Include clock.txt in the HEAD section of your document
clock.txt
=========
<script language="javascript">
<!-- Clock in Java Script .. Cameron Gregory cameron@bloke.com
// http://www.bloke.com/
// http://www.bloke.com/javascript/Clock/
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);
}
// for some reason on some pages this crashes netscape
function Clock()
{
document.write('<FORM name=dateform><input name=date size=')
document.write(len)
document.write(' value="Clock: Requires Javascript"></FORM>')
start(document.dateform);
}
// end-->
</script>