// JavaScript Document
	window.defaultStatus="Calendar Script";

function popupEvent(day, month, year, w, h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	win = window.open("eventi/calendar.php?day=" + day + "&month=" + month + "&year=" + year + "","_self", "Calendar","scrollbars=yes, status=yes, location=yes, toolbar=yes, menubar=yes, directories=no, resizable=yes, width=" + w + ", height=" + h + ", top=" + wint + ", left=" + winl + "");
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
		}
	}
