English
<!--To achieve this effect, two steps are required. The first step is: add the following code to the <body> area--> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function runClock() { theTime = window .setTimeout("runClock()", 1000); var today = new Date(); var display= today.toLocaleString(); status=display; } // End --> </SCRIPT> <!--Second Step: Add "onLoad="runClock()"" to the <body> tag --> <body onLoad="runClock()">