
// Provide a default path to dwr.engine
if (typeof this['dwr'] == 'undefined') this.dwr = {};
if (typeof dwr['engine'] == 'undefined') dwr.engine = {};

if (typeof this['CatalogSearch'] == 'undefined') this.CatalogSearch = {};

CatalogSearch._path = '/BernsteinPortal/dwr';

CatalogSearch.getNumberOfResults = function(p0, p1, p2, callback) {
  dwr.engine._execute(CatalogSearch._path, 'CatalogSearch', 'getNumberOfResults', p0, p1, p2, callback);
};

CatalogSearch.getListForAutoComplete = function(p0, p1, callback) {
  dwr.engine._execute(CatalogSearch._path, 'CatalogSearch', 'getListForAutoComplete', p0, p1, callback);
};

CatalogSearch.periodicRequest = function(callback) {
  dwr.engine._execute(CatalogSearch._path, 'CatalogSearch', 'periodicRequest', callback);
};


