<!--
/*

	" GetDateCode " write by Frapa in Jenuary 1998
	All right reserved - no copy allowed!
	fra@rvsnet.it

*/

oggi = new Date()

   document.write("<font face=\"Arial,Helvetica\" COLOR=\"#465773\" size=\"-2\">");
   document.write(" ");

                  if (oggi.getDay()==0) document.write("Domenica");
                  if (oggi.getDay()==1) document.write("Lunedi");
                  if (oggi.getDay()==2) document.write("Martedi");
                  if (oggi.getDay()==3) document.write("Mercoledi");
                  if (oggi.getDay()==4) document.write("Giovedi");
                  if (oggi.getDay()==5) document.write("Venerdi");
                  if (oggi.getDay()==6) document.write("Sabato");

                  else document.write("");

   document.write(" ",oggi.getDate());

   document.write(" ");

                  if (oggi.getMonth()==0) document.write("Gennaio");
                  if (oggi.getMonth()==1) document.write("Febbraio");
                  if (oggi.getMonth()==2) document.write("Marzo");
                  if (oggi.getMonth()==3) document.write("Aprile");
                  if (oggi.getMonth()==4) document.write("Maggio");
                  if (oggi.getMonth()==5) document.write("Giugno");
                  if (oggi.getMonth()==6) document.write("Luglio");
                  if (oggi.getMonth()==7) document.write("Agosto");
                  if (oggi.getMonth()==8) document.write("Settembre");
                  if (oggi.getMonth()==9) document.write("Ottobre");
                  if (oggi.getMonth()==10) document.write("Novembre");
                  if (oggi.getMonth()==11) document.write("Dicembre");

                  else document.write("");
   document.write(" ",(oggi.getYear() ));

   document.write("</font>");
   document.write("</b>");

// -->