<!-- Begin
var months=new Array(13);
months[1]="Gennaio";
months[2]="Febbraio";
months[3]="Marzo";
months[4]="Aprile";
months[5]="Maggio";
months[6]="Giugno";
months[7]="Luglio";
months[8]="Agosto";
months[9]="Settembre";
months[10]="Ottobre";
months[11]="Novembre";
months[12]="Dicembre";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    
year = year + 1900; 
document.write("<left>" + date + " ");
document.write(lmonth + ", " + year + "</left>");
// End -->

