// Anytime Anywhere Web Page Clock Generator
// Clock Script Generated at
// http://www.rainbow.arch.scriptmania.com/tools/clock

function timeSource(){
   x=new Date();
   x.setTime(x.getTime());
   return x;
}
function leadingZero(x){
   return (x>9)?x:'0'+x;
}
function displayTime(){
   if(fr==0){
      fr=1;
      document.write('<span id="bh_time">'+eval(bhTime)+'</span>');
   }
   document.getElementById('bh_time').innerHTML=eval(bhTime);
   //setTimeout('displayTime()',1000);
}
var fr=0;
var bhTime="leadingZero(timeSource().getHours())+':'+leadingZero(timeSource().getMinutes())+' '";



// Use the following within your HTML to Start/display your clock
// <script language="JavaScript">displayTime();</script>
