document.write("<div id='orologio'>");
function tS(){ x=new Date(); x.setTime(x.getTime()); return x; } 
function lZ(x){ return (x>9)?x:'0'+x; } 
function dT(){ document.getElementById('orologio').innerHTML=eval(oT); setTimeout('dT()',1000); } 
var oT="lZ(tS().getHours())+':'+lZ(tS().getMinutes())+':'+lZ(tS().getSeconds())+' '";
if(!document.all){ window.onload=dT; }else{ dT(); }
document.write("</div>");

