<!-- 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]="Sunday"
  day[1]="Monday"
  day[2]="Tuesday"
  day[3]="Wednesday"
  day[4]="Thursday"
  day[5]="Friday"
  day[6]="Saturday"

  today  = new Date();
  aDay   = today.getDay();
  aMonth = today.getMonth();
  aDate  = today.getDate();

  strDate = day[aDay] + ", " + month[aMonth] + " " + aDate
  document.write(strDate);
  // End Hide -->
