//filedate.js
//This code displays the date a file was last modified
//Copied from the Netscape 3.0 Javascript Guide //http://wp.netscape.com/eng/mozilla/3.0/handbook/javascript
lastmod = document.lastModified     // get string of last modified date
lastmoddate = Date.parse(lastmod)   // convert modified string to date
moddate = new Date(lastmod)
year = moddate.getFullYear()
month = moddate.getMonth()
day = moddate.getDate()
if(lastmoddate == 0){               // unknown date (or January 1,
                                    // 1970 GMT)
   document.writeln("Last update: Unknown")
   } else {
	 //document.writeln("Last update: " + lastmod)
	 document.writeln("Last update: " + (month + 1) + "/" + day + "/" + year) 
}