function theclock(){
 if (!document.layers&&!document.all)
 return
Digital=new Date()
hours=Digital.getHours()
minutes=Digital.getMinutes()
seconds=Digital.getSeconds()
 if (hours==0)
 hours=24
 if (minutes<=9)
 minutes="0"+minutes
 if (seconds<=9)
 seconds="0"+seconds

goclock=Digital.toLocaleString()
//goclock="<font face='Arial' color='#ffcc00' size='2'><b>"+hours+":"+minutes+":"+seconds+"</b></font>"
if (document.layers){
document.layers.dynamicclock.document.write(goclock)
document.layers.dynamicclock.document.close()
}
else if (document.all)
dynamicclock.innerHTML=goclock
setTimeout("theclock()",1000)
 }

function apriFinestra(nomeFile,w,h,t,l,name)
{
window.open('./'+nomeFile, name,'width='+w+',height='+h+', top='+t+', left='+l+', menubar=no,scrollbars=yes,directories=no,toolbar=no,resizable=yes');
}
