<!-- Begin
var language = 2;
var months = new Array(13);
if (language == 2)
{
months[1] = "Gennaio";months[2] = "Febbraio";months[3] = "Marzo";
months[4] = "Aprile";months[5] = "Maggio";months[6] = "Giugno";
months[7] = "Luglio";months[8] = "Agosto";months[9] = "Settembre";
months[10] = "Ottobre";months[11] = "Novembre";months[12] = "Dicembre";
}
else
{
months[1] = "January";months[2] = "February";months[3] = "March";
months[4] = "April";months[5] = "May";months[6] = "June";
months[7] = "July";months[8] = "August";months[9] = "September";
months[10] = "October";months[11] = "November";months[12] = "December";
}
var dateObj = new Date(document.lastModified);
var lmonth = months[dateObj.getMonth() + 1];
var date = dateObj.getDate();
var fyear = dateObj.getYear();
if (fyear < 200) fyear = fyear + 1900;

document.write("<FONT SIZE=1>");
if (language == 2)
	document.write("Questa pagina &egrave; stata aggiornata il " + date + " " + lmonth + " " + fyear)
else
	document.write("This page has been updated on " + lmonth + " " + date + ", " + fyear)
document.write("</FONT>");

// End -->
