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("");
document.write("  " + date + ". " + lmonth + " " + year + "");