function dataOdierna() {
	mese = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	data = new Date();
	index = data.getMonth();
	giorno = new Array("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
	indexday = data.getDay();
	if (indexday == 0)
		indexday = 7;
	any = data.getYear();
	if (any < 1900)
		any = 1900 + any;
	document.write(giorno[indexday-1] + ", " + data.getDate() + " " + mese[index] + " " + any);
}
