function sugestao(caminho){

	Wwidth  = 500;
	Wheight = 270;

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

function crianca(caminho){

	Wwidth  = 780;
	Wheight = 435;

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

function abre_manutencao(caminho){
	if(screen.width == "800"){
		window.open(caminho,'area_manutencao','width=800,height=550,top=0,left=0,copyhistory=no,directories=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=no');
	}
	else{

		Wwidth  = 800;
		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+",copyhistory=no,directories=no,menubar=no,resizable=no,status=yes,toolbar=no,scrollbars=no";
	
		window.open(caminho,'area_manutencao',params);
	}
}