<!-- 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('Sunday', ',');
if (weekday == 1) document.writeln('Monday', ',');
if (weekday == 2) document.writeln('Tuesday', ',');
if (weekday == 3) document.writeln('Wednesday', ',');
if (weekday == 4) document.writeln('Thursday', ',');
if (weekday == 5) document.writeln('Friday', ',');
if (weekday == 6) document.writeln('Saturday', ','); 

document.writeln("<br>");

date = today.getDate(); 
document.write (date,' ' );
month = today.getMonth();
if (month == 0) document.write('January');
if (month == 1) document.write('February');
if (month == 2) document.write('March');
if (month == 3) document.write('April');
if (month == 4) document.write('May');
if (month == 5) document.write('June');
if (month == 6) document.write('July');
if (month == 7) document.write('August');
if (month == 8) document.write('September');
if (month == 9) document.write('October');
if (month == 10) document.write('November');
if (month == 11) document.write('December');
year=1900+today.getYear();
document.write (' ',year);
//document.writeln("</font>");
//qui termina il codice dello script-->

