function OpenPopUp(Pagina, Altura, Largura, Scroll, Nome, Topo, Esquerda)
	{
		var Propriedades

		if (Topo=='') {Topo = ((screen.height/2)-(Altura/2));}
		if (Esquerda=='') {Esquerda= ((screen.width/2)-(Largura/2));}

		Propriedades = 'scrollbars='+Scroll+',width='+Largura+',height='+Altura+',left='+Esquerda+',top='+Topo;

		window.open (Pagina, Nome, Propriedades);
	}