// JavaScript Document
var departoptions = {
script: function (input) { return "/flightjax.asp?input="+input+"&testid="+document.getElementById('departid').value; },
varname:"input",
timeout: 5000,
delay: 200,
maxresults: 18,
callback: function (obj) { document.getElementById('departid').value = obj.id; }
};

var arriveoptions = {
script: function (input) { return "/flightjax.asp?input="+input+"&testid="+document.getElementById('arriveid').value; },
varname:"input",
timeout: 5000,
delay: 200,
callback: function (obj) { document.getElementById('arriveid').value = obj.id; },
maxresults: 18
};


var as = new bsn.AutoSuggest('depart', departoptions);
var as = new bsn.AutoSuggest('arrive', arriveoptions);
