// JavaScript Document
// -- made by A1javascripts.com, please keep these credits when using this script
    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 ("<face='Arial, Verdana' color=#FFFFFF><b>"+ day +
    " " + date + " " + month + " " + year + "</b></font>")
    // -- end hiding
