
			function UpdateQty(item)
			{
				order_product_id = item.name;
			
					newQty = item.options[item.selectedIndex].text;
					document.location.href = 'checkout.php?action=update_item&order_product_id='+order_product_id+'&qty='+newQty;				
			}
			
			function UpdateQtyKids(item, op_id)
			{
					order_product_id = op_id;
					newQty = item.options[item.selectedIndex].text;
					document.location.href = 'checkout.php?action=update_item&order_product_id='+order_product_id+'&qty_kids='+newQty;				
			}
			

			function RemoveItem(order_product_id){

			 //var where_to= confirm("Are you sure you want to remove this product from the shopping cart?\n\n\n");
	
				//if (where_to== true)
				document.location.href = 'checkout.php?action=remove_item&order_product_id='+order_product_id;
				//else 
				//document.location.href = 'checkout.php';				

			}

