 <!--//
  var now = new Date();

  function daystoa(date, description, after){
  <!-- 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 diff = date.getTime() - now.getTime() + (1000 * 60 * 60 * 24);
  var days = Math.floor(diff / (1000 * 60 * 60 * 24));
  document.write("<center><font color=red><i>")
  if (days > after ) { }
  else if (days > 2) {
  document.write(days + " days to " + description);
  }
  else if (days == 2) {
  document.write("Only two days to " + description);
  }
  else if (days == 1) {
  document.write("Tomorrow is " + description);
  }
  else if (days == 0) {
  document.write("It's today for " + description);
  }
  else  {
  }
  document.write("</i></font> </center>");
  return
  }
  // End -->

