
var date = new Date("April 29, 2006");
var description = "";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("")
if (days > 1) {
document.write(days+1 + " days, " + description);
}
else if (days == 1) {
document.write("2 days!" + description);
}
else if (days == 0) {
document.write("Tommorow!&nbsp;" + description);
}
else {
document.write("Today!&nbsp;");
}
document.write("");
// End -->

 

