//
//file: lastmodify.js		author: frj		date: 30-Sep-2001	email: frj11@ev1.net
//

if (typeof lm != 'undefined') {
	// get lm because it is set
	text  = "<div align='center'><sub>";
	text += "<font face='Arial' size='2' color='black'>This page last modified:  " +lm.substring(0,lm.length);
	text += "</sub></div>";
	document.open();
	document.write(text);
	document.close();
}
if (typeof lm == 'undefined') {
	// build string if not set
	lm = document.lastModified;
	text  = "<div align='center'><sub>";
	text += "<font face='Arial' size='2' color='black'>This page last modified: " +lm.substring(0,lm.length-9);
	text += "</sub></div>";
	// write to current document
	document.open();
	document.write(text);
	document.close();
}
// End
