  <!-- 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]="01"
  month[1]="02"
  month[2]="03"
  month[3]="04"
  month[4]="05"
  month[5]="06"
  month[6]="07"
  month[7]="08"
  month[8]="09"
  month[9]="10"
  month[10]="11"
  month[11]="12"

  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>"

  lastmoddate = new Date(document.lastModified);
  
  //today  = new Date();
  aDay   = lastmoddate.getDay();
  aMonth = lastmoddate.getMonth();
  aDate  = lastmoddate.getDate();
  aYear = lastmoddate.getFullYear();
    
  strDate = "Last Modified on: "+day[aDay] + ",  " + month[aMonth]+ "/" +aDate +"/"+aYear
  document.write(strDate);
  // End Hide -->
