function PopupPrivacy() {
	var intH = 400;
	var intW = 500;
	var strPag = "privacy.html";
	var strName = "wPopupPrivacy";
	ApriPopup(strPag, strName, intW, intH, 1);
}

function PopupCommenti() {
	var intH = 250;
	var intW = 300;
	var strPag = "commenti.html";
	var strName = "wPopupCommenti";
	ApriPopup(strPag, strName, intW, intH, 1);
}
function ClickBanner() {
	window.open("http://www.pfizerconsumer.it/pfizerPCH/webapp/jsp/serviceDispatcher.jsp?idPagina=2000", "_blank");
}

function ApriPopup(strPag, strName, intW, intH, bScroll) {
	var intT = (screen.height - intH) / 2;
	var 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("E' stato rilevato un blocco popup che impedisce l'apertura della pagina da te richiesta.\nConsulta le istruzioni del tuo browser per sapere come abilitare le finestre popup.");
	}
}

