function dateupdated(){
  var modDate = new Date(document.lastModified)
  var modYear = modDate.getYear()
  if(modYear<1000) modYear+=1900
  document.write("updated: " + modDate.getDate() + "/" + (modDate.getMonth()+1) + "/" + (modYear+""))
}
