
/*
	purpose:
		used in the front end 
	page:
		/index.html
	Parameters:
		theform - object reference to the form being passed
*/
function CheckEmailSignup(theform)
{
	var submit_it=true;
	
	if (!IsEmail(theform.notifyemailaddress.value))
	{
		alert("Please enter a valid email address.");
		theform.notifyemailaddress.focus();
		submit_it=false;
	}
	
	if (submit_it)
	{
		NewWind('',496,400,0);
		theform.submit();
	}
}