This is a little nifty feature that calls up the time on your computer. I now have a automatic one on the called Javascript Clock.
The source...
<center> <script language="JavaScript"> <!-- // please keep these lines on when you copy the source // made by: Nicolas - http://www.javascript-page.com today = new Date() document.write("You accessed this page at: <b>"); document.write("",today.getHours(),":",today.getMinutes(),":",today.getSeconds()); document.write("</b>"); //--> </script> </center>