<!-- Original:  Alan Palmer -->
<!-- Web Site:  http://www.jsr.communitech.net -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var date = new Date("June 15, 2012");
var description = "Opening Night";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<DIV class=style4 align=right>")
if (days > 1) {
document.write(days+1 + " days until " + description);
}
else if (days == 1) {
document.write("Two days until " + description + "!");
}
else if (days == 0) {
document.write("Tomorrow is " + description + "!");
}
else {
document.write("It's Festival Time!");
}
document.write("</DIV>");
// End -->
