
function lastModified() {
	var modDate = new Date(document.lastModified);
	document.write("Last Updated: " + modDate.toLocaleString());
}

