function CreditCardPaymentClick() {

	oButton = document.getElementById('CreditCardTakePaymentButton');
	// Locate the button
	oButton.disabled = true;
	// Disable the button

	HideSelectBoxes();
	// Hide all pull down lists
	HideActiveX();
	// Hide all ActiveX controls


	oTransparency = document.getElementById("Transparency");
	// Locate the transparency element
	oTransparency.style.height = GetPageHeight();
	oTransparency.style.width = GetPageWidth();
	oTransparency.style.display = 'block';
	oTransparency.style.position = 'absolute';
	oTransparency.style.right = 0;
	oTransparency.style.top = 0;
	// Fill the screen with the transparency

	oHiddenSpan = document.getElementById('CreditCardHiddenMessage');
	// Locate the button

	oHiddenSpan.style.display = 'inline-block';
	oHiddenSpan.style.position = 'absolute';
	oHiddenSpan.style.right = (GetPageWidth() - 600) /2;
	oHiddenSpan.style.top = 200;
	// Layout the popup on the screen

	document.CreditCardDetails.submit();
	// Submit the form

}