function changeQuantity() {
	document.cartItems.recalculate.value = 1
	document.cartItems.submit()

}





function CancelConfirm()
{
	var msg = "\n You are about to empty your shopping cart and cancel this order. \n " +
				" If you click OK, you won't be able to undo this operation.	\n " +
				" Are you sure you want to cancel this order?          \n ";
							
	if(confirm(msg))
	{
		return true;
	}			
	else
	{
		return false;
	}
}