<!--
function startclock()
{

var time = new Date()
a=1.157407407407*((time.getHours()* 3600000)+ (time.getMinutes()* 60000)+(time.getSeconds()*1000))+(time.getMilliseconds())
//a= total amount of arno seconds

b=a/10000000
//b = amount of arno hours with decimals

c=(b-(Math.floor(b)))*100
//c = amount of arno minutes with decimals

d=(c-(Math.floor(c)))*100
//d = amount of arno seconds with decimals

b = Math.floor(b)

c = Math.floor(c)
if (c<10)
 {
 c=("0"+c)
 }

d = Math.floor(d)
if (d<10)
 {
 d=("0"+d)
 }


document.clockform.clockspot.value=(b)+":"+(c)+":"+(d)+" ";

setTimeout('startclock()',864);

} 

//-->