
<!--
//<![CDATA[
function validator(theForm) {  
  if (theForm.Email.value == "")
  {
    alert("You must enter an e-mail address!");
    theForm.Email.focus();
    return (false);
  }
  var okEmail = theForm.Email.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
	if (okEmail){
   		ok = true;
		} else {
	   alert('Please enter a valid e-mail address.');
	   theForm.Email.focus();
	   theForm.Email.select();
	   ok = false;
	   return false;
  }
  if (theForm.First.value == "")
  {
    alert("Please enter your first name.");
    theForm.First.focus();
    return (false);
  }  
  if (theForm.Last.value == "")
  {
    alert("Please enter your last name.");
    theForm.Last.focus();
    return (false);
  }
  
  if (theForm.Question.value == "")
  {
    alert("Please, don't forget to post your question.");
    theForm.Question.focus();
    return (false);
  }
setNameCookie();  
return true;
}  
//]]>


//-->
