function showClock()
 {
 var MonthsOfYear = new Array(12);
 MonthsOfYear[0] = "Gennaio";
 MonthsOfYear[1] = "Febbraio";
 MonthsOfYear[2] = "Marzo";
 MonthsOfYear[3] = "Aprile";
 MonthsOfYear[4] = "Maggio";
 MonthsOfYear[5] = "Giugno";
 MonthsOfYear[6] = "Luglio";
 MonthsOfYear[7] = "Agosto";
 MonthsOfYear[8] = "Settembre";
 MonthsOfYear[9] = "Ottobre";
 MonthsOfYear[10] = "Novembre";
 MonthsOfYear[11] = "Dicembre";
 
 var Digital=new Date();
 var year=Digital.getFullYear();
 var month=Digital.getMonth()+1;
 var day=Digital.getDate();
 var hours=Digital.getHours();
 var minutes=Digital.getMinutes();
 var seconds=Digital.getSeconds();
 if (month<=9)
   month="0"+month;
 if (day<=9)
   day="0"+day;
 //var dn="AM" 
 //if (hours>12)
 //  {
 //  dn="PM"
 //  hours=hours-12
 //  }
 //if (hours==0)
 //  hours=12
 if (minutes<=9)
   minutes="0"+minutes;
 if (seconds<=9)
   seconds="0"+seconds;

//change font size here to your desire
mydate="Ultimo aggiornamento<br>"+day+"/"+month+"/"+year;
myclock=day+" "+MonthsOfYear[(month-1)]+" "+year+"&nbsp;&nbsp;&nbsp;&nbsp;"+hours+":"+minutes+":"+seconds;
if (document.all)
  {
  livedate.innerHTML=mydate;
  liveclock.innerHTML=myclock;
  }
else if (document.getElementById)
  {
  (document.getElementById("livedate")).innerHTML = mydate;
  (document.getElementById("liveclock")).innerHTML = myclock;
  }
else if (document.layers)
  {
  document.layers.livedate.document.write(mydate);
  document.layers.livedate.document.close();
  document.layers.liveclock.document.write(myclock);
  document.layers.liveclock.document.close();
  }

setTimeout("showClock()",1000);
}

