// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; if (AutoComplete == null) var AutoComplete = {}; AutoComplete._path = '/dwr'; AutoComplete.autocomplete = function(p0, p1, p2, callback) { dwr.engine._execute(AutoComplete._path, 'AutoComplete', 'autocomplete', p0, p1, p2, callback); } AutoComplete.getNameByIataCode = function(p0, callback) { dwr.engine._execute(AutoComplete._path, 'AutoComplete', 'getNameByIataCode', p0, callback); } AutoComplete.getList = function(p0, p1, callback) { dwr.engine._execute(AutoComplete._path, 'AutoComplete', 'getList', p0, p1, callback); }