// JavaScript Document

	function popup(Pagina, Largura, Altura)
	{
		var Topo;
		var Esq;

		if (Largura == null)
			Largura = 200;
			
		if (Altura == null)
			Altura = 200;
		
		Esq = (screen.availWidth - Largura) / 2;
		Topo = (screen.availHeight - Altura) / 2;

		window.open(Pagina, '_blank', 'left=' + Esq + ',top=' + Topo + ',width=' + Largura + ', height=' + Altura + ', status=no, scrollbars=yes');
	}

