/*01/06/2000, ffl, file:lst_up3.js */
update = new Date(document.lastModified)
theDate= update.getDate()
theMonth = update.getMonth()  + 1
theYear = update.getFullYear()
if(theYear < 2000)
theYear=theYear+100
document.writeln
("last update: " + theMonth + "/" + theDate + "/"
+ theYear)


