function form1_submit() {
  var f = document.form1;
  if (f.placa.value == '') {
    f.destino.value = 'imoveis.php';
  } else {
    f.destino.value = 'detalhes.php';
  }
  return true;
}

function pesquisar() {
  var f = document.form1;  
  if (f.placa.value == '') {
    f.destino.value = 'imoveis.php';
  } else {
    f.destino.value = 'detalhes.php';
  }
  f.submit();
}
