<script language="JavaScript">var timerID = null;var timerRunning = false;function stopclock (){ if(timerRunning) clearTimeout(timerID); timerRunning = false;}
function startclock () { // Make sure the clock is stopped stopclock(); showtime();}
function showtime () { var now = new Date(); var hours = now.getHours(); var minutes = now.getMinutes(); var seconds = now.getSeconds();
var date = now.getDate(); var month = now.getMonth() + 1; var year = now.getYear(); if (year < 1000) year+=1900 var timeValue = "" + ((hours < 10 ) ? "0" : "") + hours // var timeValue = "" + ((hours &