



<!-- 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<100) year="19" + time.getYear();
else year=2008;
document.write("" + date + " ");
document.write(lmonth + "   " + year + "");
// End -->
