<!--CLOCK III--> <!-- This part can go in the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2003, Sandeep Gangadharan --> <!-- For more free scripts go to http://www.sivamdesign.com/scripts/ --> <!-- function sivamtime() { now=new Date(); hour=now.getHours(); min=now.getMinutes(); sec=now.getSeconds(); if (min<=9) { min="0"+min; } if (sec<=9) { sec="0"+sec; } if (hour>12) { hour=hour-12; add="pm"; } else { hour=hour; add="am"; } if (hour==12) { add="pm"; } time = ((hour<=9) ? "0"+hour : hour) + ":" + min + ":" + sec + " " + add; if (document.getElementById) { document.getElementById('theTime').innerHTML = time; } else if (document.layers) { document.layers.theTime.document.write(time); document.layers.theTime.document.close(); } setTimeout("sivamtime()", 1000); } window.onload = sivamtime; // --> </script> <!-- This goes into the BODY of the file --> <body> <span id="theTime" style="position:absolute; left:10; top:10; font-family: arial; font-size: 9pt"></span> </body>