<!--
var Gweek = "Mercoledì";
var Gday = "8";
var Gmonth = "Febbraio";
var Gyear = "2012";
if ( window.location.pathname.substring(window.location.pathname.length - 9,window.location.pathname.length) == "index.htm")
{
document.write(Gweek," ",Gday," ",Gmonth," ",Gyear);
}
else
{
document.write(Gweek.substring(0,3)," ",Gday," ",Gmonth.substring(0,3)," ",Gyear);
}
//-->

