function divPromocoes(){
  if(document.getElementById('promocoes').style.display == "none"){
    document.getElementById('promocoes').style.display = "block";
  }else{
    document.getElementById('promocoes').style.display = "none";
  }
}
function buscavantagens(cidade,categoria){
  location.replace("?n1=supervantagens&n2=busca&cidade="+cidade+"&categoria="+categoria+"");
}
function busca(){
  palavra = document.getElementById('busca-vantagem-palavra').value;
  if(palavra != ""){
    location.replace("?n1=supervantagens&n2=resultado&palavra="+palavra+"");
  }else{
    alert("Digite uma palavra - chave!");
  }
}
function promoPop(id,tipo){
  window.open("cont/poppromo.php?id="+id+"&tipo="+tipo+"","","width=500,height=670,menubar=no,toolbar=no,status=no,scrollbars=yes");
}
function outraJanela(end){
  window.open(end,"","");
}