 <!-- Original:  Alan Palmer -->
  <!-- Web Site:  http://www.users.dircon.co.uk/~apalmer -->

  <!-- Begin
  var date = new Date("October 31, 2008");
  var description = "Halloween";
  var now = new Date();
  var diff = date.getTime() - now.getTime();
  var days = Math.floor(diff / (1000 * 60 * 60 * 24));
  document.write("&nbsp;")
  if (days > 1) {
  document.write(days + " days until " + description);
  }
  else if (days == 1) {
  document.write("Only two days until " + description);
  }
  else if (days == 0) {
  document.write("Tomorrow is " + description);
  }
  else {
  document.write("It's" + description + "!");
  }
  // End -->