

	function confirmDelete(url)
	{
		var strMsg = 'Are you sure you want to delete this item ?';

		if (confirm(strMsg))
		{
			window.location = url;
		}
	}


	function confirmRemove(url)
	{
		var m = 'Are you sure you want to remove this item ?';

		if (confirm(m))
		{
			window.location = url;
		}
	}


	function confirmSubmit(form)
	{
		var m = 'Are you sure you want to save these changes?';

		if (confirm(m))
		{
			return true;
		}
		else {
			return false;	
		}
	}


	function confirmPlaceOrder(url)
	{
		var strMsg = 'This will transfer the products in this order to the basket on the AutoArt web site. Are you sure you want to proceed?';

		if (confirm(strMsg))
		{
			window.open(url, 'order');
		}
	}

