function cargaContenido(fichero,pars) {
 $.ajax({
  type: "POST",
  url: fichero,
  cache: false,
  data: pars,
  //dataType: "json",
  success: function(datos){
   $('#contenido').html(datos);
   if (fichero=="ficha.asp") {
    $('#gallery a').lightBox();
   }
  },
  error: function(){
   alert("ERROR DE LLAMADA AJAX");
  }
 });
}

function buscar() {
 var sl_precio1=document.getElementById('sl_precio1').value;
 var sl_precio2=document.getElementById('sl_precio2').value;
 var antig=document.getElementById('antig').value;
 var tipo=document.getElementById('tipo').value;
 var op_comb=document.getElementById('op_comb').value;
 var pars="buscador=1"+"&sl_precio1="+sl_precio1+"&sl_precio2="+sl_precio2+"&antig="+antig+"&tipo="+tipo+"&op_comb="+op_comb;
 cargaContenido("listado.asp",pars);
}

function financiacion() {
 var tx_entrada=document.getElementById('tx_entrada').value;
 var tx_precio=document.getElementById('tx_precio').value;
 var hd_interes=document.getElementById('hd_interes').value;
 var sl_tiempo=document.getElementById('sl_tiempo').value;
 var pars="tx_entrada="+tx_entrada+"&tx_precio="+tx_precio+"&hd_interes="+hd_interes+"&sl_tiempo="+sl_tiempo;
 if (tx_precio == null || tx_precio == "") { 
  alert("El campo 'Cantidad' no puede quedar vacio");
 } else {
  cargaContenido("financiacion2.asp",pars);
 }
}
