function carregaBusca(flag) {
  document.getElementById('id_resultado').innerHTML = '<br /><div class="centraliza"><img src="./imagens/carregando.gif" alt="" /></div>';
  xajax_buscarImoveis('', xajax.getFormValues('frm_filtro'), 'asc', '0', flag);
}

function abreDetalhes(codimovel) {
  window.open("./detalhes-imovel.php?codimovel=" + codimovel, 'detalhes_imovel', 'toolbar=0,scrollbars=1,location=0,status=1,statusbar=0,menubar=0,resizable=0,copyhistory=no,width=710,height=545,screenX=150,screenY=150,top=50,left=50');
}

function abreGoogleMaps(endereco) {
  window.open("./google-maps.php?endereco=" + endereco, 'google_maps', 'toolbar=0,scrollbars=1,location=0,status=1,statusbar=0,menubar=0,resizable=0,copyhistory=no,width=778,height=510,screenX=150,screenY=150,top=50,left=50');
}

function abreAjuda() {
  window.open("./busca-por-regicao.php", 'busca_por_regiao', 'toolbar=0,scrollbars=1,location=0,status=1,statusbar=0,menubar=0,resizable=0,copyhistory=no,width=680,height=480,screenX=150,screenY=150,top=50,left=50');
}

function abreAtendimento() {
  window.open("./operadores-atendimento-online.php", 'atendimento_online', 'toolbar=0,scrollbars=1,location=0,status=1,statusbar=0,menubar=0,resizable=0,copyhistory=no,width=580,height=520,screenX=150,screenY=150,top=50,left=50');
}

function trocaImg(img, sit) {
  img.src = "./imagens/btn_mais_detalhes.gif";
  if(sit == 'over') {
    img.src = "./imagens/btn_mais_detalhes_over.gif";
  }
}

function contCaracter(campo, num_input) {
  document.getElementById('esc_maxima' + num_input).value = 500 - document.getElementById(campo).value.length;
  if (document.getElementById(campo).value.length >= 500){
    document.getElementById(campo).value = document.getElementById(campo).value.substring(0, 500);
    document.getElementById('esc_maxima' + num_input).value = 0
  }
}

// pula para o próximo campo
function PulaCampo(campo_atual,proximo_campo,num_digitos) {
 if (campo_atual.value.length == num_digitos){
   proximo_campo.focus();
 }
}