function tS(){ x=new Date(); x.setTime(x.getTime()); return x; } 
function lz(x){ return (x>9)?x:'0'+x; } 
function y2(x){ x=(x<500)?x+1900:x; return String(x) } 
function dT(){ document.getElementById('tpClock').innerHTML=eval(oT); setTimeout('dT()',1000); } 
oT="'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'+lz(tS().getHours())+':'+lz(tS().getMinutes())+':'+lz(tS().getSeconds())";
if(!document.all){ window.onload=dT; }else{ dT(); }