var old = '';
function SwitchMenu(obj){
	/*
	if(old!='' && old!=document.getElementById(obj)){
		old.style.display = "none";
	}
	*/
	if(document.getElementById){
	var el = document.getElementById(obj);
		if(el.style.display != "block"){
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
	old = el;
}

var w=screen.availWidth; var h=screen.availHeight
function popup(theURL,winName,larghezza,altezza) {
	window.open(theURL,winName,"status=yes,resizable=no,width="+larghezza+",height="+altezza+",top="+(h-altezza)/2+",left="+(w-larghezza)/2);
}
function popupscroll(theURL,winName,larghezza,altezza) {
	window.open(theURL,winName,"status=yes,resizable=yes,scrollbars=yes,width="+larghezza+",height="+altezza+",top="+(h-altezza)/2+",left="+(w-larghezza)/2);
}
