|
here is the script
<script LANGUAGE="JavaScript">
<!-- Begin
function run() {
theTime = window.setTimeout("run()", 1000);
var today = new Date();
var display= today.toLocaleString();
status=display;
}
// End -->
</script>
now modify the <BODY> tag like this
<body onLoad="run()">
|