		<!--
					
				
				function removeItem(strItemID,strItemNo,intIndex,intQty)
					{						
						if(confirm("Item No. '" + strItemNo + "'   ( qty x " + intQty + " )\n\nAre You Sure You Want to Delete this Item from the Cart?"))
							{
								document.forms['cart_form'].txtAction.value="delete";
								document.forms['cart_form'].txtSelectedItem.value=strItemID;
								document.forms['cart_form'].txtSelectedIndex.value=intIndex;
								document.forms['cart_form'].submit();
							}
					}
					
				function addMore()
					{						
						if(strCallingPage!="")
							{
								document.forms['cart_form'].action=strCallingPage;
								document.forms['cart_form'].submit();
							}
					}
					
				function placeOrder()
					{
						if(boolCartDisabled == true)
							{
								alert('We are sorry but the Online Shopping Cart is Currently Not Available due to Site Upgrades in Progress, We do Apologise for any Inconvenience this may cause.\n\nPlease Try Again Shortly or Contact Us via an Alternative Means to Place your Order at this stage');
								return false;
							}
						else
							{
								document.forms['cart_form'].action= 'store.php?page=1'; //strStorePage;
								document.forms['cart_form'].submit();
							}				
						
					}				
				function placeOrderTest()
					{
						document.forms['cart_form'].action= 'store.php?page=1'; //strStorePage;
						document.forms['cart_form'].submit();
					}
				function updateCart()
					{
						document.forms['cart_form'].txtAction.value="update";
						document.forms['cart_form'].submit();
					}			
				
					
		//-->
