function validation(obj){if(obj.checked)hasProduct=hasProduct+1;else hasProduct=hasProduct-1}function check(){if(hasProduct<=0){alert("Vous devez sélectionner au moins deux produits.");return false}if(hasProduct%2!=0){alert("Vous devez sélectionner un nombre pair de produit.");return false}return true}function ManageBasket(theCheckBox,displayName,price){var theString;if(hasProduct>1)theString="Vous avez sélectionné "+hasProduct+" produits.";else theString="Vous avez sélectionné "+hasProduct+" produit.";if(theCheckBox!=null&&theCheckBox.checked)totalPrice=totalPrice+price;else totalPrice=totalPrice-price;if(hasProduct>0)totalString="Pour un total de : "+Math.round(totalPrice*50)/100+" €";else{totalString="";totalPrice=0}if(document.getElementById){document.getElementById("selection").innerHTML=theString;document.getElementById("Total").innerHTML=totalString}else if(document.all){document.all["selection"].innerHTML=theString;document.all["Total"].innerHTML=totalString}if(totalString.length>0)setVisibility("Total",true);else setVisibility("Total",false)};
