
$(document).ready(function(){$('input#origen').autocomplete("aeropuertos_origen.php",{minChars:3,matchSubset:0,matchContains:1,cacheLength:0,onItemSelect:selectItem,formatItem:formatItem,selectFirst:1,selectOnly:0});$('input#destino').autocomplete("aeropuertos.php",{minChars:3,matchSubset:0,matchContains:1,cacheLength:0,onItemSelect:selectItem,formatItem:formatItem,selectFirst:1,selectOnly:0});});function selectItem(li,obj){switch(obj){case"origen":var fld='origenBis';break;case"destino":var fld='destinoBis';break;default:return;}
$('input[@name="'+fld+'"]').val(li.extra);return false;}
function formatItem(row){return row[0];}
function selectItem2(i,t,o){var sigFocus="";switch(o){case"origen":sigFocus="#destino";break;case"destino":sigFocus="#salida";break;default:tb_remove();return;}
$('input[@name="'+o+'"]').val(t);$('input[@name="'+o+'Bis"]').val(i);if(sigFocus!="")$(sigFocus).focus();$.unblockUI();tb_remove();}
