// funcao para abrir e fechar o mapa
function FechaMapa(){
	document.getElementById("abrirmapa").style.display="block";
	document.getElementById("fecharmapa").style.display="none";
	document.getElementById("mapacidades").style.display="none";
}

function AbreMapa(){
	document.getElementById("abrirmapa").style.display="none";
	document.getElementById("fecharmapa").style.display="block";
	document.getElementById("mapacidades").style.display="block";
}

function selCidd(redirect)
{
	if(redirect != "")
	{
		location.href = redirect;
	}
}


function AbreAtendimento() {
    var foto = window.open("","janela","width=350,height=340,resizable=no,toolbar=0,location=0,directories=0,status=no,menubar=0");
    setTimeout ("document.dados.submit();",10);
}

function AbrePremiacao() {
    var prem = window.open("premiacao/fale.html","janela_prem","width=800,height=440,resizable=no,toolbar=0,location=0,directories=0,status=no,menubar=0");
}