	
<!--

function checkEmail(vInput)
{
	var Correct = true;
	CharCount=1;
	strLength=vInput.length;
	// look for @
	while ((CharCount < strLength) && (vInput.charAt(CharCount) != "@"))
	{
		CharCount++;
	}

	if ((CharCount>= strLength) || (vInput.charAt(CharCount) != "@"))
	{
		alert ("Geben Sie bitte eine gültige Email-Adresse ein!")
		Correct = false;
	}
	else
	{
		CharCount += 2;
	}

	// look for .
	while ((CharCount < strLength) && (vInput.charAt(CharCount) != "."))
	{
		CharCount++;
	}

	// there must be at least one character after the .
	if ((CharCount>= strLength - 1) || (vInput.charAt(CharCount) != "."))
	{
		alert ("Geben Sie bitte eine gültige Email-Adresse ein!")
		Correct = false;
	}
	return Correct;
}
/**
 * Test input for the home page form.
 */
function testInputHome()
{
	var NoBlanks = true;
	if(!checkEmail(document.submissionForm.email.value))
	{
		document.submissionForm.email.focus();
		NoBlanks = false;
	}
	return NoBlanks;
}