<!-- JavaScript for Last Update from http://www.crays.com/jsc/jsC4UmodDate.htm#ModDate2 //-->
var modDate = new Date(document.lastModified)

  var modYear = modDate.getYear()

  if(modYear<1000) modYear+=1900

       

  document.write("Updated: " + (modDate.getMonth()+1) + "/" + 

                  modDate.getDate() + "/" + (modYear+"").substring(2,4))