<!--
		var today = new Date();
		var year = today.getFullYear();
		var date = today.getDate();
		var todays_date = new Date;
		if (year < 100) year = 1900 + year;
		
		days = new Array("_DAY(0,IT)","_DAY(1,IT)","_DAY(2,IT)",
						 "_DAY(3,IT)","_DAY(4,IT)","_DAY(5,IT)",
						 "_DAY(6,IT)");
		months = new Array("Gennaio","Febbraio","Marzo",
						   "Aprile","Maggio","Giugno",
						   "Luglio","Agosto","Settembre",
						   "Ottobre","Novembre","Dicembre");
	document.writeln("<p class='bottoni'align='right'>"+date + " " +  months[todays_date.getMonth()] + " " + year+"</p>");
		//-->