   function TodayDate() {
	Oggi = new Date();
	nMese = Oggi.getMonth() + 1;
	if (nMese ==  1) { Mese = "Gennaio"; }
	if (nMese ==  2) { Mese = "Febbraio"; }
	if (nMese ==  3) { Mese = "Marzo"; }
	if (nMese ==  4) { Mese = "Aprile"; }
	if (nMese ==  5) { Mese = "Maggio"; }
	if (nMese ==  6) { Mese = "Giugno"; }
	if (nMese ==  7) { Mese = "Luglio"; }
	if (nMese ==  8) { Mese = "Agosto"; }
	if (nMese ==  9) { Mese = "Settembre"; }
	if (nMese == 10) { Mese = "Ottobre"; }
	if (nMese == 11) { Mese = "Novembre"; }
	if (nMese == 12) { Mese = "Dicembre"; }
	nGiorno = Oggi.getDay();
	Giorno = " berludí(" + nGiorno + ")";
	if (nGiorno == 1) { Giorno = "Lunedì"; }
	if (nGiorno == 2) { Giorno = "Martedì"; }
	if (nGiorno == 3) { Giorno = "Mercoledì"; }
	if (nGiorno == 4) { Giorno = "Giovedì"; }
	if (nGiorno == 5) { Giorno = "Venerdì"; }
	if (nGiorno == 6) { Giorno = "Sabato"; }
	if (nGiorno == 0) { Giorno = "Domenica"; }
	Data = Oggi.getDate();
        Anno = Oggi.getYear();
	TheDay = Giorno;
	Stringa = "<B>" + Giorno + " " + Data + " " + Mese + " " + Anno + "</B>";
	document.writeln (Stringa);
   }
