function validateForm(theForm)
	{
		var emailFormat = /^[\w]+([\w]+|[\.]+[^ ]+)*@[\w]+([\w]+|[-]+|[\.]+[^ ]+)*\.[a-zA-Z]+$/;
		if ((theForm.email) && theForm.email.value != ""  && (theForm.email.value.search(emailFormat) == -1))
  		{
		alert("Please enter your correct email address in the \"Email\" text field.");
    	theForm.email.focus();
    	return (false);
  		}
	}