<!--time = new Date();minutes = time.getMinutes();month = time.getMonth();if (month == 0) { month = "Gennaio"; }else if (month == 1) { month = "Febbraio"; }else if (month == 2) { month = "Marzo"; }else if (month == 3) { month = "Aprile"; }else if (month == 4) { month = "Maggio"; }else if (month == 5) { month = "Giugno"; }else if (month == 6) { month = "Luglio"; }else if (month == 7) { month = "Agosto"; }else if (month == 8) { month = "Settembre"; }else if (month == 9) { month = "Ottobre"; }else if (month == 10) { month = "Novembre"; }else if (month == 11) { month = "Dicembre"; }document.write("<font color=3366cc>" + time.getDate() +  " " + month + " " + time.getYear() + "</font>");// -->
