<!-- Il codice successivo sarà ignorato dai browser più vecchi

//libreria di javascript 


var	today = new Date();


document.writeln("<font face='arial' size='1' color='#999999'> ");

weekday = today.getDay();
if (weekday == 0) document.writeln('Domenica', ',');
if (weekday == 1) document.writeln('Lunedì', ',');
if (weekday == 2) document.writeln('Martedì', ',');
if (weekday == 3) document.writeln('Mercoledì', ',');
if (weekday == 4) document.writeln('Giovedì', ',');
if (weekday == 5) document.writeln('Venerdì', ',');
if (weekday == 6) document.writeln('Sabato', ','); 

document.writeln("<br>");

date = today.getDate(); 
document.write (date,' ' );
month = today.getMonth();
if (month == 0) document.write('gennaio');
if (month == 1) document.write('febbraio');
if (month == 2) document.write('marzo');
if (month == 3) document.write('aprile');
if (month == 4) document.write('maggio');
if (month == 5) document.write('giugno');
if (month == 6) document.write('luglio');
if (month == 7) document.write('agosto');
if (month == 8) document.write('settembre');
if (month == 9) document.write('ottobre');
if (month == 10) document.write('novembre');
if (month == 11) document.write('dicembre');
n=1900+today.getYear();
year=n;
document.write (' ',year);
//document.writeln("</font>");
//qui termina il codice dello script-->

