function class_clock(f,s,c,b,w,h,d) {
	this.b=b;this.w=w;this.h=h;this.d=d;
	this.o='<font style="color:'+c+'; font-family:'+f+'; font-size:'+s+'pt;">';
}
var clock=new class_clock("Verdana, Arial, Helvetica, sans-serif","10","#ffff00","","40",1,1)
d=document
if (d.all || d.getElementById) {d.write('<span id="activeClock" style="width:'+clock.w+'px; background-color:'+clock.b+'"></span>'); }
else if (d.layers) {d.write('<ilayer bgcolor="'+clock.b+'" id="wrapClock"><layer width="'+clock.w+'" id="activeClock"></layer></ilayer>'); }
else {KW_doClock(1);}
function KW_doClock(a) {
	d=document;t=new Date();p="";dClock="";	if (d.layers) d.wrapClock.visibility="show";
	h=t.getHours();m=t.getMinutes();s=t.getSeconds();if (clock.d)
	 {m=(m<=9)?"0"+m:m; s=(s<=9)?"0"+s:s;} dClock = clock.o+h+':'+m+':'+s+' '+p+'</font>';
	if (a) {d.write(dClock);}if (d.layers) {wc = document.wrapClock;lc = wc.document.activeClock;
		lc.document.write(dClock);lc.document.close();
	} else if (d.all) {	activeClock.innerHTML = dClock;
	} else if (d.getElementById) {d.getElementById("activeClock").innerHTML = dClock;}
	if (!a) setTimeout("KW_doClock()",1000);
}