﻿var over=false;
function apriMenu (obj, quale) {
	over=true;
	if (obj.className=="") {
		obj.className="selected";
	}
	for (i=1;i<3;i++) {
		elemento='sottomenu' + i;
		if(i==quale) {
			document.getElementById(elemento).style.display = 'block';
		} else if (document.getElementById(elemento)) {
			document.getElementById(elemento).style.display = 'none';
		}
	}
}

function chiudiMenu () {
	if (!over) {
		for (i=1;i<3;i++) {
			elemento='sottomenu' + i;
			if (document.getElementById(elemento)) {
				document.getElementById(elemento).style.display = 'none';
			}
		}
	}
}

function openPopup(pagina,finestra,w,h,scroll) {
	var left = (screen.width/2)-(w/2);
	var top = (screen.height/2)-(h/2);
	stile="width="+w+",height="+h+",left="+left+",top="+top+",toolbar=no,directories=no,status=no,statusbar=no,resizable=0,menubar=no,location=no,scrollbars="+scroll;
	objPopup = window.open(pagina, finestra, stile);
}

