function popUp(URL, Nome, W, H, SB) {
	xtop = ((screen.height - H) /2);
	xleft = ((screen.width - W) /2);
	eval(Nome + " = window.open(URL, '" + Nome + "', 'toolbar=0, scrollbars=" + SB + ", location=0, statusbar=0, menubar=0, resizable=0, width=" + W + ", height=" + H + ", left=" + xleft + ", top=" + xtop + "');");
}

function aprifinestra(finestra,parametri){
	window.open(finestra,'',parametri);
}