<!-- 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("October 8, 2010");
var description = "to go!";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<left>")
if (days > 1) {
document.write(days+1 + " days " + description);
}
else if (days == 1) {
document.write("Two days " + description);
}
else if (days == 0) {
document.write("Tomorrow!");
}
else {
document.write("This weekend!");
}
document.write("</left>");
// End -->
