// Clock Script Generated By Maxx Blade's Clock v2.0d
// http://www.maxxblade.co.uk/clock
function timeSource2(){
   x=new Date(timeNow2().getUTCFullYear(),timeNow2().getUTCMonth(),timeNow2().getUTCDate(),timeNow2().getUTCHours(),timeNow2().getUTCMinutes(),timeNow2().getUTCSeconds());
   x.setTime(x.getTime()+32400000);
   return x;
}
function timeNow2(){
   return new Date();
}
function leadingZero2(x){
   return (x>9)?x:'0'+x;
}
function displayTime2(){
   window.status=''+eval(outputTime2)+'';
   document.getElementById('tQ').innerHTML=eval(outputTime2);
   setTimeout('displayTime2()',1000);
}
var outputTime2="leadingZero2(timeSource2().getHours())+':'+leadingZero2(timeSource2().getMinutes())+':'+leadingZero2(timeSource2().getSeconds())+' '";
if(!document.all){ displayTime2(); }


// Put the following HTML on your page where you would like the Clock to be displayed:
// <span id="tQ">&nbsp;</span>

