// JavaScript Document
	function DeleteCartItem(ScriptURL, ItemID, ItemDescription)
	{
		if (confirm("Do you want to delete this Order? (" + ItemDescription + ")" )){
			window.open(ScriptURL + "?Id=" + ItemID + "&Act=Del&msg=" + ItemDescription,"_self") 
		}
		else{
			return false;
		}				
	}
	function DeleteCart(ScriptURL)
	{
		if (confirm("Do you want to delete all the item(s) in your shopping cart?" )){
			window.open(ScriptURL + "?Act=delcart","_self") 
		}
		else{
			return false;
		}
				
	}		
