 var today = new Date()
		giorno = today.getDay()
		if (giorno == 0){giorno = "Sunday"}
		if (giorno == 1){giorno = "Monday"}
		if (giorno == 2){giorno = "Tuesday"}
		if (giorno == 3){giorno = "Wednesday"}
		if (giorno == 4){giorno = "Thursday"}
		if (giorno == 5){giorno = "Friday"}
		if (giorno == 6){giorno = "Saturday"}
		mese = today.getMonth()
		if (mese == 0){mese = "January"}
		if (mese == 1){mese = "February"}
		if (mese == 2){mese = "March"}
		if (mese == 3){mese = "April"}
		if (mese == 4){mese = "May"}
		if (mese == 5){mese = "June"}
		if (mese == 6){mese = "July"}
		if (mese == 7){mese = "August"}
		if (mese == 8){mese = "September"}
		if (mese == 9){mese = "October"}
		if (mese == 10){mese = "November"}
		if (mese == 11){mese = "December"}
		anno = today.getYear()
		numgiorno = today.getDate()

function sInf()  {

	window.open('sinf.htm', 'popup', 'width=500,height=400,top=125, left=120,screenX=120, screenY=125,scrollbars=yes');
	return false;

}