LastModDate = new Date(document.lastModified);
month = LastModDate.getMonth();
month = (month * 1) + 1;
Time = new Date(document.lastModified);
	Hour = Time.getHours();
	Mins = Time.getMinutes();
	Secs = Time.getSeconds();
day = LastModDate.getDate();
year = LastModDate.getYear();
if (year < 2000) year=year + 1900; //netscape needs that...//
document.write("Last updated on " ,day,".",month,".",year);
//document.write("Last revised at ", Hour,":",Mins,":",Secs," on " ,month,"/",day,"/",year," ","using SiteAid");
//


