document.write('
18 : 42 : 16
');function houroo() { webma = new Date; wh = ((webma.getHours()+24)%24); wm = webma.getMinutes(); ws = webma.getSeconds();
if ( ws < 10 ) { ws = "0"+ws; } if (wm < 10) { wm = "0"+wm; }if (wh < 10) { wh = "0"+wh; }
if (document.getElementById) { document.getElementById("webmasteroo_hour").innerHTML=wh+" : "+wm+" : "+ws; }
setTimeout("houroo()", 1000); }
window.onload = houroo;
document.write('');