today=new Date();

function showTime(){
/*
var today = new Date();
var hrs = today.getHours();
document.writeln("");
document.writeln("<font color='red' size='2'>");
document.write("Visit Time: ");
dayStr = today.toLocaleString();
document.write(dayStr);
document.writeln("</font>");
*/
document.writeln("<font color='red' size='2'>");
document.write("Last Update Date :  " + document.lastModified);
document.writeln("</font>");
}


