function submitCCPurchase(formName) {
	formName.OrderPaymentMethod.value = "Credit Card";
	formName.submit();
}

function submitCheckPurchase(formName) {
	formName.OrderPaymentMethod.value = 'Check';
	formName.submit();
}

function continueShopping(formName) {
	formName.OrderSubmitted.value = '0';
	formName.submit();
}

function calculateVAT(formName) {
	formName.CalculateVAT.value = '1';
	formName.submit();
}
