function ApriPopup(strPag, strName, intW, intH, bScroll) {
	intT = (screen.height - intH) / 2;
	intL = (screen.width - intW) / 2;
	winPopup = window.open(strPag, strName, "top=" + intT + ",left=" + intL + ",width=" + intW + ",height=" + intH + "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + bScroll + ",resizable=0");
	if(winPopup == null) alert("Per poter visualizzare il contenuto richiesto è necessario che le finestre popup non vengano bloccate.\nConsulta le istruzioni del tuo browser per sapere come abilitare le finestre popup.");
	else winPopup.focus();
}
