/* Funzioni ------------------------------------------------------------------------ */

	function addToCart(id) {

		$.post("actions/addToCart.action.php",{ 
       			id: id
     		}, function(data) {

			if (document.getElementById('productNumber')) {

				$("#productNumber").html(data);
			}

			location.href = "?pg=cart";
			/* alert($("#addtocart-msg").val()); */
 		});
	}

	function updateQty(pos) {

		$.post("actions/updateCart.action.php",{ 
       			pos: pos,
			qta: $("#qta_"+pos).val()
     		}, function(data) { 

			if (data=="OK") {

				self.location.reload();

			} else {

				$("#qta_"+pos).val($("#oldqta_"+pos).val());

				alert($("#updatecart-no").val());
			}
 		});
	}

	function deleteFromCart(id) {

		if (confirm($("#deletefromcart-msg").val())) {

			$.post("actions/deleteFromCart.action.php",{ 
       				id: id
     			}, function(data) {

				if (data=="OK") {

					self.location.reload();

				} else {

					alert($("#deletefromcart-no").val());
				}
 			});
		}
	}

	function sendOrder(id) {

		if (confirm($("#sendorder-question").val())) {

			openLoader();

			$.post("actions/saveOrder.action.php",{
				send_indirizzo: $('[name="send_indirizzo"]:checked').val(),
       				send_pagamento: $('[name="send_pagamento"]:checked').val(),
       				indirizzo_spot: $("#indirizzo_spot").val()
     			}, function(data) {

				if (data=="OK") {

					if ($('[name="send_pagamento"]:checked').val()=="paypal") {

						document.paypalForm.submit();

					} else {

						self.location.reload();
					}

				} else {

					hideLoader();
					alert($("#sendorder-no").val());
				}
 			});
		}
	}


	function openLoader() {

		if (document.getElementById('pageLoader')) { document.getElementById('pageLoader').style.visibility="visible"; }
		if (document.getElementById('pageLoaderContent')) { document.getElementById('pageLoaderContent').style.visibility="visible"; }
	}

/* --------------------------------------------------------------------------------- */
