// 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 (maptemp == null) var maptemp = {}; maptemp._path = '/dwr'; maptemp.test = function(p0, callback) { dwr.engine._execute(maptemp._path, 'maptemp', 'test', p0, callback); } maptemp.hello = function(p0, p1, callback) { dwr.engine._execute(maptemp._path, 'maptemp', 'hello', p0, p1, callback); } maptemp.fingdgg = function(callback) { dwr.engine._execute(maptemp._path, 'maptemp', 'fingdgg', callback); } maptemp.test2 = function(p0, p1, p2, p3, callback) { dwr.engine._execute(maptemp._path, 'maptemp', 'test2', p0, p1, p2, p3, callback); } maptemp.test3 = function(callback) { dwr.engine._execute(maptemp._path, 'maptemp', 'test3', callback); } maptemp.test4 = function(callback) { dwr.engine._execute(maptemp._path, 'maptemp', 'test4', callback); }