<!--

// Checks if specified email address is properly formatted
function IsValidEmailAddress(stringEmailAddress)
{	
	var filter = /^.+@.+\..{2,3}$/;

	if (filter.test(stringEmailAddress))
	{
		return true;
	}
	else
	{
		var string1 = "Invalid Email Address: ";
		var string2 = "\n\nVerify the Email Address is properly formatted.";

		alert(string1 + stringEmailAddress + string2);

		return false;
	}

	return false;
}

// Removes Empty/White Spaces from a String
function RemoveSpaces(string)
{
	return string.split(' ').join('');
}

-->
