// Provide a default path to DWREngine if (DWREngine == null) { var DWREngine = {}; } DWREngine._defaultPath = '/dwr'; function RemoteFunctions() { } RemoteFunctions._path = '/dwr'; RemoteFunctions.setUserService = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'setUserService', p0, callback); } RemoteFunctions.checkUserName = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'checkUserName', p0, callback); } RemoteFunctions.setContentService = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'setContentService', p0, callback); } RemoteFunctions.sumPointInContent = function(p0, p1, p2, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'sumPointInContent', p0, p1, p2, callback); } RemoteFunctions.getVoteUsersByContentId = function(p0, callback) { DWREngine._execute(RemoteFunctions._path, 'RemoteFunctions', 'getVoteUsersByContentId', p0, callback); }