// 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 (GeoLocatorService == null) var GeoLocatorService = {}; GeoLocatorService._path = '/Community/services/dwr'; GeoLocatorService.getLocation = function(callback) { dwr.engine._execute(GeoLocatorService._path, 'GeoLocatorService', 'getLocation', false, callback); } GeoLocatorService.getLocationByIP = function(p0, callback) { dwr.engine._execute(GeoLocatorService._path, 'GeoLocatorService', 'getLocationByIP', p0, false, callback); }