

<!-- Script by www.virtuality.ch
function show5(){
 if (!document.layers&&!document.all)
 return
 var Digital=new Date()
 var hours=Digital.getHours()
 var minutes=Digital.getMinutes()
 var seconds=Digital.getSeconds()
 var date=Digital.getDate()
 var month=Digital.getMonth()
 var year=Digital.getFullYear()
 strmonth = convertMonth(month)

 if (minutes<=9)
 minutes="0"+minutes
 if (seconds<=9)
 seconds="0"+seconds
myclock="<font size='2' face='Arial' color='#F7840F'>Ora sono le ore "+hours+":"+minutes+":"+seconds+" del "+date+" "+strmonth+" "+year+"</font>"
if (document.layers){
document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
}
else if (document.all)
liveclock.innerHTML=myclock
setTimeout("show5()",1000)
 }

   function MakeArray(size){
   this.length = size;

   for(var i=1; i<=size; i++) {
      this[i] = '';
   }
   return this;
  }

 function convertMonth(month) {
  strmonth = new MakeArray(12);
 strmonth[0] = "Gennaio";
 strmonth[1] = "Febbr.";
 strmonth[2] = "Marzo";
 strmonth[3] = "Aprile";
 strmonth[4] = "Maggio";
 strmonth[5] = "Giugno";
 strmonth[6] = "Luglio";
 strmonth[7] = "Agosto";
 strmonth[8] = "Sett.";
 strmonth[9] = "Ott.";
 strmonth[10] = "Nov.";
 strmonth[11] = "Dic.";
 return strmonth[month];
 }
file://-->
