// Anytime Anywhere Web Page Clock Generator
// Clock Script Generated at
// http://www.rainbow.arch.scriptmania.com/tools/clock

function timeSource(){
   x=new Date(timeNow().getUTCFullYear(),timeNow().getUTCMonth(),timeNow().getUTCDate(),timeNow().getUTCHours(),timeNow().getUTCMinutes(),timeNow().getUTCSeconds());
   x.setTime(x.getTime());
   return x;
}
function timeSource_2(){
   x=new Date(timeNow().getUTCFullYear(),timeNow().getUTCMonth(),timeNow().getUTCDate(),timeNow().getUTCHours(),timeNow().getUTCMinutes(),timeNow().getUTCSeconds());
   x.setTime(x.getTime()+7200000);
   return x;
}
function timeNow(){
   return new Date();
}
function leadingZero(x){
   return (x>9)?x:'0'+x;
}
function displayTime(){
   if(fr==0){
      fr=1;
      document.write('<span id="tP">'+eval(outputTime)+'</span>');
   }
   document.getElementById('tP').innerHTML=eval(outputTime);
   setTimeout('displayTime()',1000);
}
function fixYear4(x){
   return (x<500)?x+1900:x;
}
var fr=0;
var outputTime="fixYear4(timeSource().getYear())+'-'+leadingZero((timeSource().getMonth()+1))+'-'+leadingZero(timeSource().getDate())+' '+' '+leadingZero(timeSource().getHours())+':'+leadingZero(timeSource().getMinutes())+':'+leadingZero(timeSource().getSeconds())+' UTC&nbsp;<br>'+fixYear4(timeSource_2().getYear())+'-'+leadingZero((timeSource_2().getMonth()+1))+'-'+leadingZero(timeSource_2().getDate())+' '+' '+leadingZero(timeSource_2().getHours())+':'+leadingZero(timeSource_2().getMinutes())+':'+leadingZero(timeSource_2().getSeconds())+' UTC'";



