<!-- 
function makeArray(len)
{	
	for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
}
var	dayNames = new makeArray(7);
	dayNames[0] = "Domenica";
	dayNames[1] = "Lunedi";
	dayNames[2] = "Martedi";
	dayNames[3] = "Mercoledi";
	dayNames[4] = "Giovedi";
	dayNames[5] = "Venerdi";
	dayNames[6] = "Sabato";
var monthNames = new makeArray(12);
	monthNames[0] = "Gennaio";
	monthNames[1] = "Febbraio";
	monthNames[2] = "Marzo";
	monthNames[3] = "Aprile";
	monthNames[4] = "Maggio";
	monthNames[5] = "Giugno";
	monthNames[6] = "Luglio";
	monthNames[7] = "Agosto";
	monthNames[8] = "Settembre";
	monthNames[9] = "Ottobre";
	monthNames[10] = "Novembre";
	monthNames[11] = "Dicembre";
var now = new Date();
var day = now.getDay();
var month = now.getMonth();
var year = now.getYear();
var date = now.getDate();
// Check for a two digit year code
if (year < 100)
{
	// Fix two digit year codes up to 2036 (I hope that all computer systems by then will use a four digit date code)
	if (year <= 36)
	{
		// Add three digits to the year displayed for years up to 2009
		if (year < 10)
		{
			document.write('<font class="titolo_giallo"><b>&nbsp;');
			document.write(dayNames[day] + "  " + date + "  " + monthNames[month] + ", 200" + year);
		}
		else
		// Add two digits to the year displayed for years 2010 and beyond
		{
			document.write('<font class="titolo_giallo"><b>&nbsp;');
			document.write(dayNames[day] + "  " + date + "  " + monthNames[month] + ", 20" + year);
		}
	}
	else
	//	Modify the currently used two digit date code to display four digits
	{
		document.write('<font class="titolo_giallo"><b>&nbsp;');
		document.write(dayNames[day] + "  " + date + "  " + monthNames[month] + ", 19" + year);
	}
}
else if (year >= 2000)
// Display the Y2K ready four digit date code
{
	document.write('<font class="titolo_giallo"><b>&nbsp;');
	document.write(dayNames[day] + "  " + date + "  " + monthNames[month] + ", " + year);
}
else
// Displayed when an invalid date code has been received
{
	document.write('<font class="titolo_giallo"><b>&nbsp;');
	document.write(dayNames[day] + "  " + date + "  " + monthNames[month]);
	
}
// -->



