var showCustomerLogin = true;
function showCustomerLoginBox()
{
	var Element = getElement('id', 'customerLoginBox', 0);
	var ElementData = getElement('id', 'customerDataBox', 0);
	
	if(showCustomerLogin)
	{
		Element.style.display = 'block';
		ElementData.style.display = 'none';	
	}
	else
	{
		Element.style.display = 'none';
		ElementData.style.display = 'block';	
	}
	
	showCustomerLogin = !showCustomerLogin;
}

var showCustomerRegistration = true;
function showCustomerRegistrationBox()
{
	var Element = getElement('id', 'customerRegistrationBox', 0);
	//var ElementButton = getElement('class', 'contentBoxFormButton', 0);
	
	if(showCustomerRegistration)
	{
		Element.style.display = 'block';
		//Element.style.visibility = 'visible';
		//ElementButton.style.display = 'none';
	}
	else
	{
		Element.style.display = 'none';
		//Element.style.visibility = 'hidden';
		//ElementButton.style.display = 'block';
	}
	showCustomerRegistration = !showCustomerRegistration;
}