SCRIPT SOURCE
<SCRIPT LANGUAGE="JavaScript">
<!--
var dateform
speed=1000
len=28
tid = 0;
function dodate()
{
f.date.value=new Date();
tid=window.setTimeout("dodate()",speed);
}
function start(x) {
f=x
tid=window.setTimeout("dodate()",speed);
}
function cleartid() {
window.clearTimeout(tid);
}
function Clock() {
document.write('<FORM name=dateform><input
name=date size=')
document.write(len)
document.write(' value="This is the time">')
start(document.dateform);
}
//-->
</SCRIPT>