<!-- Hide from browsers that do not support JavaScript

// Get the current date
today = new Date(); 

// Get the current month
month = today.getMonth();

// Attach a display name to the month number

switch (month) {
    case 0 :
        displayMonth = "Gennaio"
        break
    case 1 :
        displayMonth = "Febbraio"
        break
    case 2 :
        displayMonth = "Marzo"
        break
    case 3 :
        displayMonth = "Aprile"
        break
    case 4 :
        displayMonth = "Maggio"
        break
    case 5 :
        displayMonth = "Giugno"
        break
    case 6 :
        displayMonth = "Luglio"
        break
    case 7 :
        displayMonth = "Agosto"
        break
    case 8 :
        displayMonth = "Settembre"
        break
    case 9 :
        displayMonth = "Ottobre"
        break
    case 10 :
        displayMonth = "Novembre"
        break
    case 11 :
        displayMonth = "Dicembre"
        break

    default: displayMonth = "INVALID"
}


document.writeln ("Oggi è il " + today.getDate() + " " + displayMonth + " " + today.getFullYear());

// -->