// JavaScript Document
<!--
var obj = new Date();
var mese,giorno;
var nome="";
var stringa="";

document.write();

// Giorno della settimana
giorno = obj.getDay();

switch(giorno) {
  case 0: nome = "Domenica"; break;
  case 1: nome = "Lunedi'"; break;
  case 2: nome = "Martedi'"; break;
  case 3: nome = "Mercoledi'"; break;
  case 4: nome = "Giovedi'"; break;
  case 5: nome = "Venerdi'"; break;
  case 6: nome = "Sabato";
}

stringa = nome+", "+obj.getDate();
document.write(stringa.fontcolor("999999").toUpperCase());

// Mese dell'anno
mese = obj.getMonth();

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

stringa = " "+nome+" "+obj.getFullYear();
document.write(stringa.fontcolor("999999").toUpperCase());

//-->