function abrePopup(caminho,largura,altura,scroll){
	Wwidth  = largura;
	Wheight = altura;

	tamW = screen.width;
	tamH = screen.height;

	posW = (tamW/2) - (Wwidth/2);
	posH = (tamH/2) - (Wheight/2);

	params = ",left="+posW+",top="+posH+",width="+Wwidth+",height="+Wheight+",toolbar=0,menubar=0,scrollbars="+scroll+",status=0";

	window.open(caminho,'popup',params);
}
