// 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 (Account == null) var Account = {}; Account._path = '/dwr'; Account.getAccountStatus = function(callback) { dwr.engine._execute(Account._path, 'Account', 'getAccountStatus', callback); } Account.getAccount = function(callback) { dwr.engine._execute(Account._path, 'Account', 'getAccount', callback); }