function checkSubmit()

{

	var errorList = "";

	if (loginForm.terms.checked == false)

	{

		errorList = errorList + "You must agree to the Terms and Conditions.";

	}

	if (loginForm.email.value.length == 0 )

	{

		if (errorList.length > 0)

		{

			errorList = errorList + "\n";

		}

			errorList = errorList + "Your must enter an email address. This will be your username.";	

	}


	if (loginForm.password.value.length == 0 )

	{

		if (errorList.length > 0)

		{

			errorList = errorList + "\n";

		}

			errorList = errorList + "Your must enter a password.";	

	}



	if (loginForm.password.value != loginForm.password_confirm.value)

	{

		if (errorList.length > 0)

		{

			errorList = errorList + "\n";

		}

			errorList = errorList + "Your password and password confirmation do not match.";

	}

	

	if (errorList.length > 0)

	{

		alert(errorList);

		return false;

	}

	else

	{

		loginForm.submit();

	}

}

