// 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 (AccountController == null) var AccountController = {}; AccountController._path = '/dwr'; AccountController.logout = function(callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'logout', callback); } AccountController.showLoginScreen = function(callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'showLoginScreen', callback); } AccountController.attemptLoginToCheckout = function(p0, p1, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'attemptLoginToCheckout', p0, p1, callback); } AccountController.attemptRegularLogin = function(p0, p1, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'attemptRegularLogin', p0, p1, callback); } AccountController.sendPassword = function(p0, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'sendPassword', p0, callback); } AccountController.sendPasswordStr = function(p0, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'sendPasswordStr', p0, callback); } AccountController.beginRegisterCustomer = function(p0, p1, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'beginRegisterCustomer', p0, p1, callback); } AccountController.showUpdateAddress = function(callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'showUpdateAddress', callback); } AccountController.showUpdateAddressNoTx = function(callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'showUpdateAddressNoTx', callback); } AccountController.performUpdateAddress = function(p0, p1, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'performUpdateAddress', p0, p1, callback); } AccountController.updateShopperPLT = function(p0, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'updateShopperPLT', p0, callback); } AccountController.changePassword = function(p0, p1, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'changePassword', p0, p1, callback); } AccountController.updateShopperPPP = function(p0, callback) { dwr.engine._execute(AccountController._path, 'AccountController', 'updateShopperPPP', p0, callback); }