  dat = new Date();
  //alert (dat);
  month = dat.getMonth();
  monthname = new Array();
  monthname[0] = "Gennaio";
  monthname[1] = "Febbraio";
  monthname[2] = "Marzo";
  monthname[3] = "Aprile";
  monthname[4] = "Maggio";
  monthname[5] = "Giugno";
  monthname[6] = "Luglio";
  monthname[7] = "Agosto";
  monthname[8] = "Settembre";
  monthname[9] = "Ottobre";
  monthname[10] = "Novembre";
  monthname[11] = "Dicembre";
  day = dat.getDate();
  year = dat.getFullYear();
  document.write('<span>' + day + ' ' + monthname[month] + ' ' + year + '</span>');

