function displayCartPreview(){var a=new Ajax.Request("index.php?command=CartPreview",{asynchronous:true,contentType:"application/x-www-form-urlencoded",encoding:"UTF-8",method:"post",postBody:"",onComplete:function(b){$("cart-preview-mouse-zone").style.display="block";$("cart-preview").innerHTML=b.responseText;$("cart-preview-wrap").style.display="block"}})} function removeProductFromCart(a){a=new Ajax.Request("index.php?command=RemoveProductFromCart",{asynchronous:true,contentType:"application/x-www-form-urlencoded",encoding:"UTF-8",method:"post",postBody:"productId="+a,onComplete:function(b){displayCartPreview();$("cart-paragraph").innerHTML=b.responseText}})} function onMouseOutCartPreview(a){if(!a)a=window.event;if(a!=null){a=a.relatedTarget?a.relatedTarget:a.toElement;$("cart-link").style.color="#5E5E5E";if(a!=null)for(;a!=null&&a.tagName!=null&&a.tagName!="BODY";){if(a.id=="cart-preview"||a.id=="cart-preview-mouse-zone"||a.id=="cart-link"||a.id=="panier_logo"||a.id=="panier"||a.id == 'div-user-photo-original-size')return;a=a.parentNode}}$("cart-preview-mouse-zone").style.display="none";$("cart-preview-wrap").style.display="none"};