
var URL={}
$(document).ready(function(){$("#_sbm_feed").click(function(){$("#fAvisos").trigger('submit');return false;});$("#fAvisos").submit(function(){var error=true;if($('input[@name="origenBis"]').val()==""){error=false;sError('input#origen');}
if($('input[@name="destinoBis"]').val()==""){error=false;sError('input#destino');}
if($('#salida').val()==""){error=false;sError('input#salida');}
if(($('#radio1').attr("checked"))&&($('input#regreso').val()=="")){error=false;sError('input#regreso');}
if($('#precio_max').val()==""){error=false;sError('#precio_max');}
if(!error)return false;$("input,select",$("#fAvisos")).each(function(){eval("URL."+$(this).attr("name")+"='"+escape($(this).val())+"';");});URL.tipo=($("#radio1").attr("checked"))?"RT":"OW";$.post("procesaAvisos.php",URL,function(data){$("#contenid").html(data);$("#tzone").slideUp("slow");});return false;});});
