now = new Date();
day = new Object();
month = new Object();
day[0] = "Domenica";
day[1] = "Lunedi";
day[2] = "Martedi";
day[3] = "Mercoledi";
day[4] = "Giovedi";
day[5] = "Venerdi";
day[6] = "Sabato";
month[0] = "gennaio";
month[1] = "febbraio";
month[2] = "marzo";
month[3] = "aprile";
month[4] = "maggio";
month[5] = "giugno";
month[6] = "luglio";
month[7] = "agosto";
month[8] = "settembre";
month[9] = "ottobre";
month[10] = "novembre";
month[11] = "dicembre";
year = now.getYear();
if (year < 1000) year += 1900;
document.write(day[now.getDay()] + " " + now.getDate() + " " + month[now.getMonth()] + " " + year + "&nbsp;");