
<!-- Hide from old browsers
    // use Puts the date in a string called strDate which can be used elsewhere

  month = new Array(12);
  day = new Array(7);

  month[0]="January"
  month[1]="February"
  month[2]="March"
  month[3]="April"
  month[4]="May"
  month[5]="June"
  month[6]="July"
  month[7]="August"
  month[8]="September"
  month[9]="October"
  month[10]="November"
  month[11]="December"

  day[0]="<b>Sunday</b>"
  day[1]="<b>Monday</b>"
  day[2]="<b>Tuesday</b>"
  day[3]="<b>Wednesday</b>"
  day[4]="<b>Thursday</b>"
  day[5]="<b>Friday</b>"
  day[6]="<b>Saturday</b>"

  today  = new Date();
  aDay   = today.getDay();
  aMonth = today.getMonth();
  aDate  = today.getDate();

  strDate = day[aDay] + ", " + month[aMonth] + " " + aDate
  document.write(strDate);
  // End Hide -->
