<html>
<head>
<title>Status bar Clock</title>
</head>

<body>
<p><script language="JavaScript">
function doClock()
{
    window.setTimeout( "doClock()", 1000 );
    today = new Date();
    self.status = today.toString();
}
doClock()
</script>
</body>
</html>

 

Send mail to santhosh_emids@yahoo.com with questions or comments about this web site.
Last modified: November 16, 2000