//date function
RightNow=new Date();
var themonth;
var month=RightNow.getMonth()+1;
if (month==1) themonth = "Gennaio";
if (month==2) themonth = "Febbraio";
if (month==3) themonth = "Marzo";
if (month==4) themonth = "Aprile";
if (month==5) themonth = "Maggio";
if (month==6) themonth = "Giugno";
if (month==7) themonth = "Luglio";
if (month==8) themonth = "Agosto";
if (month==9) themonth = "Settembre";
if (month==10) themonth = "Ottobre";
if (month==11) themonth = "Novembre";
if (month==12) themonth = "Dicembre";

var date=RightNow.getDate();
var year=RightNow.getYear();
var day=RightNow.getDay();
if (year==100){year="2000";}
if (year==101){year="2001";}
if (year==102){year="2002";}
if (year==103){year="2003";}
if (year==104){year="2004";}
if (year==105){year="2005";}

