<!-- Begin
var date = new Date("March 17, 2007");
var description = "Saint Patrick's Day";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<center><h3>");
if (days > 1) {document.write(" It is " + (days + 1) + " days until " + description);}
else if (days == 1) {document.write("It is only two days until " + description);}
else if (days == 0) {document.write("Tomorrow is " + description);}
else {document.write("It is " + description + "!");}
document.write("</h3></center>");
// End -->
