<!-- JAVAScript 
function revisione()
{
   var oggi = new Date();
   var Giorno = ((oggi.getDate()<10) ? "0" : "")+ ((oggi.getDate() - 1));
   var YearMonthDay =(oggi.getYear()+"/"+(oggi.getMonth()+1)+"/"+Giorno);
   return document.write(YearMonthDay);
   }
//-->


