function InformationField_Validator(theForm)
{
	if (theForm.email.value == "")
	{
		alert("Please enter Email Address.");
		theForm.email.focus();
		return (false);
	}
	
	return (true);
}

