function AbrePop(pagina,largura,altura,rolagem,nome){
		centroLeft = (screen.width / 2) - (largura / 2);
		centroTop = (screen.height / 2) - (altura / 2);
		window.open(pagina, nome, "width=" + largura + " ,height=" + altura + " ,top=" + centroTop + " ,left=" + centroLeft + ",scrollbars=" + rolagem +",status=yes");
	}
