function ProximaPagina(){
  document.frm2.submit();
}

function EnviaConsulta(op) {
  document.frm.busca.value = op; 
  document.frm.submit();
}

function Favoritos() {
  window.external.AddFavorite("http://www."+ nom , nom);
}

function faleConosco() {
  
  document.getElementById('paginasNomer').innerHTML = "Carregando...";
  
  try {
    http = createXMLHTTP();
    http.open("post", "index.php", true);
    http.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    http.setRequestHeader("Cache-Control", "no-store, no-cache, must-revalidate");
    http.setRequestHeader("Cache-Control", "post-check=0, pre-check=0");
    http.setRequestHeader("Pragma", "no-cache");
    
    http.onreadystatechange = function() {
      if (http.readyState == 4) {
        document.getElementById('paginasNomer').innerHTML = http.responseText;
      }
    }
    
    http.send('d='+ cod +'&i=contato&n=contato');
  
  } catch (eee) {
    
    document.getElementById('paginasNomer').innerHTML = "Erro ao enviar." ;
    
  }

}