function abreResultado(caminho){
	Wwidth  = 500;
	Wheight = 500;

	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+",scrollbars=1,status=0";
	
	window.open(caminho,'Busca',params);
}

function abreLogin(caminho){
	Wwidth  = 400;
	Wheight = 200;

	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+",scrollbars=1,status=0";

	window.open(caminho,'Login',params);
}

function abreExtrato(caminho){
	Wwidth  = 780;
	Wheight = 580;

	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+",scrollbars=1,status=0";

	window.open(caminho,'Extrato',params);
}

function abreProcura(caminho){
	Wwidth  = 550;
	Wheight = 450;

	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+",scrollbars=1,status=0";

	window.open(caminho,'Procura',params);
}
