function validateForm(theForm)
{
	if (!validEmail(theForm.txtEmail,"Your Email Address",true))
		return false;

  return true;
}
