// <!-- Hide from old browsers
  Update = new Date(document.lastModified)
  theDay = Update.getDate()
  if(theDay<10) theDay = "0" + theDay	
  theMonth = Update.getMonth()+1  
  if(theMonth<10) theMonth = "0" + theMonth	
  theYear = Update.getFullYear() 
  theHours = Update.getHours()
  if(theHours<10) theHours = "0" + theHours	
  theMinutes = Update.getMinutes()
  if(theMinutes<10) theMinutes = "0" + theMinutes
  document.writeln("<I>This page was last updated on " + theDay + "/" + theMonth + "/" + theYear + " at " + theHours + ":" + theMinutes +"</I>")
//  Hide from old browsers -->