<!-- 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("August 25, 2008");
var description = "Pimp My Tune @";
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 until the next<br>" + description);
}
if (days+1 < 0) {
document.write(description + "was " + days + " days ago!<br>Another will return soon!");
}
else if (days == 1) {
document.write("Only two days until " + description);
}
else if (days == 0) {
document.write(description + "<br>is Tomorrow!");
}
else if (days == -1)  {
document.write("" + description + "<br>is Today!");
}
document.write("");
// End -->

// document.write("Tomorrow is " + description);
// }
// if (days < 1) {
// document.write(description + "was " + days + " days ago!<br>Another will return soon!");
