			function updateBasket(prod_id, q) {
				document.forms['UpdateBasket'].product_id.value = prod_id;
				var quantity = eval("document.getElementById('quantity_" + prod_id + "').value;");
				document.forms['UpdateBasket'].quantity.value = quantity;
				document.forms['UpdateBasket'].submit();
			}

			function deleteBasketItem(prod_id) {
				var msg = "Click OK to confirm you wish to delete this product from your basket, otherwise click Cancel";
					if (confirm(msg)) {
					document.forms['deleteBasket'].product_id.value = prod_id;
					document.forms['deleteBasket'].submit();
				}
		}
