
var cartJsonObject=null;function CartGetBasket(){var jsonUrl='json.axd?jsonUrl='+urlServer+'ws%2fBasketManager.asmx%2fPopulateOnlyCart%3fsessionId%3d'+sessionId+'&jsonCallback=CartPopulateBasket&force=1';cartJsonObject=null;cartJsonObject=new JSONscriptRequest(jsonUrl);cartJsonObject.buildScriptTag();cartJsonObject.addScriptTag();}
function CartPopulateBasket(o){if(o!=null&&o.Cart!=null)
{var totalArticles=o.Cart.Quantity.toString();var totalPrice=formatNumber(o.Cart.Total.toString()).toString();SetText(spnCartArticles,totalArticles);SetText(spnCartPrice,totalPrice);var OImgCart=GetElement(imgCart);if(OImgCart!=null){OImgCart.src=totalArticles>0?'Images/Site/CartF2.jpg':'Images/Site/CartE.jpg'}}
cartJsonObject.removeScriptTag();}
