 function stamp()
{
update = new Date(document.lastModified)
theMonth = update.getMonth() + 1
theDate = update.getDate()
theYear = update.getFullYear()
if (theYear < 99)
{
   theYear = theYear + 2000
}
document.writeln("<I>Last updated:" + theMonth + "/" + theDate + "/" + theYear + "</I>")
}

