// 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 (ShoppingBasketWrapper == null) var ShoppingBasketWrapper = {}; ShoppingBasketWrapper._path = '/hellokitty/dwr'; ShoppingBasketWrapper.getGrandTotal = function(callback) { dwr.engine._execute(ShoppingBasketWrapper._path, 'ShoppingBasketWrapper', 'getGrandTotal', callback); } ShoppingBasketWrapper.getPostageCharge = function(callback) { dwr.engine._execute(ShoppingBasketWrapper._path, 'ShoppingBasketWrapper', 'getPostageCharge', callback); } ShoppingBasketWrapper.getListOfItems = function(callback) { dwr.engine._execute(ShoppingBasketWrapper._path, 'ShoppingBasketWrapper', 'getListOfItems', callback); } ShoppingBasketWrapper.getGrandTotalWithoutPP = function(callback) { dwr.engine._execute(ShoppingBasketWrapper._path, 'ShoppingBasketWrapper', 'getGrandTotalWithoutPP', callback); } ShoppingBasketWrapper.getTotalInBasket = function(callback) { dwr.engine._execute(ShoppingBasketWrapper._path, 'ShoppingBasketWrapper', 'getTotalInBasket', callback); } ShoppingBasketWrapper.generateShoppingBasketHtml = function(callback) { dwr.engine._execute(ShoppingBasketWrapper._path, 'ShoppingBasketWrapper', 'generateShoppingBasketHtml', callback); }