giorno="";
mese="";
today = new Date();
weekday = today.getDay();
if (weekday == 0) giorno='Domenica';
if (weekday == 1) giorno='Lunedì';
if (weekday == 2) giorno='Martedì';
if (weekday == 3) giorno='Mercoledì';
if (weekday == 4) giorno='Giovedì';
if (weekday == 5) giorno='Venerdì';
if (weekday == 6) giorno='Sabato';
month = today.getMonth();
if (month == 0) mese='Gennaio';
if (month == 1) mese='Febbraio';
if (month == 2) mese='Marzo';
if (month == 3) mese='Aprile';
if (month == 4) mese='Maggio';
if (month == 5) mese='Giugno';
if (month == 6) mese='Luglio';
if (month == 7) mese='Augosto';
if (month == 8) mese='Settembre';
if (month == 9) mese='Ottobre';
if (month == 10) mese='Novembre';
if (month == 11) mese='Dicembre';
date = today.getDate();
year=today.getYear();
document.write (giorno,' ',' ', date, ' ',mese,' ', year);
<!-- lo script deve essere collocato tra i tag body della pagina web--!>



