	//Aggiungo l'ID selezionato al carrello (tramite cookie)
	function addProductCart(myIDProduct) {
		$.post('ajax_functions/add_product_cart_cookie.asp', {IDProduct:myIDProduct},
			function(out) {
		
			}
		);
		$('#' + myIDProduct + ' .addCartBox').html("<span class='productBtnCart' onclick='delProductCart(" + myIDProduct + ")'>Togli dal carrello</span>");
		$('#' + myIDProduct + ' .addCartBox').addClass("productCartSelected");
	}
	//Tolgo dal carrello
	function delProductCart(myIDProduct) {
		$.post('ajax_functions/del_product_cart_cookie.asp', {IDProduct:myIDProduct},
			function(out) {
		
			}
		);
		$('#' + myIDProduct + ' .addCartBox').html("<span class='productBtnCart' onclick='addProductCart(" + myIDProduct + " )'>Aggiungi al carrello</span>");
		$('#' + myIDProduct + ' .addCartBox').removeClass("productCartSelected");
	}
	
	//Tolgo dai preferiti (dalla pagina del carrello stesso, quindi faccio scomparire il prodotto stesso)
	function removeProductCart(myIDProduct) {
		$.post('ajax_functions/del_product_cart_cookie.asp', {IDProduct:myIDProduct},
			function(out) {
		
			}
		);
		$('#' + myIDProduct ).remove();
	}