function abreDependente(caminho){
	Wwidth  = 750;
	Wheight = 300;

	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=1";
	
	window.open(caminho,'Dependentes',params);
}

function abreAdesao(caminho){
	Wwidth  = 750;
	Wheight = 550;

	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=1";
	
	window.open(caminho,'Adesão',params);
}