<!--
function unsetCart() {
	if(confirm('Voulez effacer tout le contenu de votre panier ?')) { 
		document.location.href = "cart_inc/unsetcart.php";
	}
	else { return; }
}
function delItem(itemId,itemCodePro) {
	if(confirm('Voulez effacer le produit '+itemCodePro+' ?')) { 
		document.location.href = "cart_inc/delcart.php?delid="+itemId+"";
	}
	else { return; }
}
//-->
