function selectItem1(item,li){$("#base_autocomplete").focus();}
$("#base_autocomplete").autocomplete("/getsuggestion.php",{delay:10,minChars:1,matchSubset:2,matchContains:2,cacheLength:1,autoFill:true,width:440,maxItemsToShow:10,onItemSelect:selectItem1,extraParams:{field:'autosuggest'}});function selectItem2(item,li){$("#autocomplete").focus();}
$("#autocomplete").autocomplete("/getsuggestion.php",{delay:10,minChars:1,matchSubset:2,matchContains:2,cacheLength:1,autoFill:true,width:300,maxItemsToShow:10,onItemSelect:selectItem2,extraParams:{field:'autosuggest'}});function selectTextItem(item,li){$('#'+item).focus();}
if(!(typeof extended_autocomplete=='undefined')){$.each(extended_autocomplete,function(intIndex,objValue){$('#'+objValue).autocomplete("/getsuggestion.php",{delay:10,minChars:1,matchSubset:2,matchContains:2,cacheLength:1,autoFill:true,width:300,maxItemsToShow:10,onItemSelect:selectTextItem,extraParams:{field:objValue},inputClass:objValue});});}