// 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 (SimulationPathService == null) var SimulationPathService = {}; SimulationPathService._path = '/simulate/dwr'; SimulationPathService.getNewPath = function(p0, p1, callback) { dwr.engine._execute(SimulationPathService._path, 'SimulationPathService', 'getNewPath', p0, p1, callback); } SimulationPathService.getNewPathForUser = function(p0, p1, callback) { dwr.engine._execute(SimulationPathService._path, 'SimulationPathService', 'getNewPathForUser', p0, p1, callback); } SimulationPathService.getNextCountPath = function(p0, p1, callback) { dwr.engine._execute(SimulationPathService._path, 'SimulationPathService', 'getNextCountPath', p0, p1, callback); }