// script to print the date the html page was last modified
  var months = "JanFebMarAprMayJunJulAugSepOctNovDec";
  var update = new Date(document.lastModified);
  dd = update.getDate();
  mm = update.getMonth();
  ma = months.substring(mm*3, mm*3 + 3);
  yy = update.getYear();
  if (yy < 1000) {
    if (yy < 100)
      yy += 2000;
    else
      yy += 1900;
  }
  document.write("<i><font class=small>Last updated: " + dd + " " + ma + ", " + yy + "</font></i>");
