<!--
//	function showlastdatemod() {
		// Display the Date the file was last modified in Month Day, YYYY format.
		// The date the file was last modified.
		var ldm = document.lastModified;
		// Convert date to julian (I think).
		ldm = Date.parse(ldm);
		// Convert date to DOW mmm dd yyyy hh:mm:ss GMT-nnnn (zone).
		ldm = new Date(ldm);
		// Array of month names:
		var months = new Array('Jan.','Feb.','Mar.','Apr.','May.','Jun.','Jul.','Aug.','Sep.','Oct.','Nov.','Dec.');
		// Current Day of Week Number, 2 digits:
		var d = ((ldm.getDate()<10) ? "0" : "")+ ldm.getDate();
		// Calculate four digit year (2 digits):
		function fourdigits(number)	{return (number < 1000) ? number + 1900 : number;}
		// Assemble the date:
		var lastmod = months[ldm.getMonth()] + " " + d + ", " + (fourdigits(ldm.getFullYear())) ;
		// Display the date in the browser window:
		document.write("Page Last Updated " + lastmod);
//	}
//-->
