<!-- inizio
var data = new Date();
if (!document.layers && !document.all)
function timer()
{
var now = new Date();
millisecondi = now.getTime() - data.getTime();
perc =  millisecondi/200
if (document.layers)
{
document.layers.clock.document.write(millisecondi)
document.layers.clock.document.close()
}
if (document.all)
clock.innerHTML= "<b>" +Math.round(perc)+ "%</b>";
window.setTimeout("timer()", 200);
}
onload=timer;
// fine -->

