home *** CD-ROM | disk | FTP | other *** search
- <html>
- <body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 scroll=no>
- <object id="FileList" classid="clsid:1820FED0-473E-11D0-A96C-00C04FD705A2" style="position: relative; width: 100%; height: 90%">
- </object>
- <div id=Clock align=center style="font-family:
- Verdana; font-size: 18; font-weight=bold;
- color:red; background:#E0E0E0"> </div>
- <script>
- function tick() {
- var hours, minutes, seconds, day, month, today, year;
- today = new Date(); hour=today.getHours();
- minutes=today.getMinutes(); seconds=today.getSeconds();
- year=today.getYear();
- day=today.getDate(); month=today.getMonth()+1;
- if (seconds < 10) {seconds="0"+seconds;}
- if (minutes < 10) {minutes="0"+minutes;}
- if (month < 10) {month="0"+month;}
- timeString=day + "." + month + "."+year+" "
- + hour+":"+minutes+":"+seconds;
- Clock.innerHTML = timeString;
- window.setTimeout("tick();", 100);}
- window.onload = tick;
- </script> </p>
- </body>
- </html>