	<!--
    
    days = new Array(7)
    days[1] = "domenica";
    days[2] = "lunedì";
    days[3] = "martedì"; 
    days[4] = "mercoledì";
    days[5] = "giovedì";
    days[6] = "venerdì";
    days[7] = "sabato";
    months = new Array(12)
    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";
    today = new Date(); day = days[today.getDay() + 1]
    month = months[today.getMonth() + 1]
    date = today.getDate()
    year=today.getYear(); 
if (year < 2000)
year = year + 1900;
    document.write (date + " " + month + " " + year)
    
			//-->
