<!--
	
function FrmValidSText(theForm) {
 if (theForm.sText.value =="")   {
    alert("Please enter some search terms.");
    theForm.sText.focus();
    return (false);
  }
		if (theForm.sText.value =="a" || theForm.sText.value =="and" || theForm.sText.value =="or") {
    alert("Please enter some search words other than just and/or.");
    theForm.sText.focus();
    return (false);
  }
}
function FrmValidNewURL(theForm) {
 if (theForm.newURL.value =="" || theForm.newURL.value =="http://")   {
    alert("Please enter URL of your blog or blog feed.");
    theForm.newURL.focus();
    return (false);
  }
 if (theForm.yourEmail.value =="")  {
    alert("Please enter an Email Address.");
    theForm.yourEmail.focus();
    return (false);
	} else {
	if(emailCheck(theForm.yourEmail.value))	{
	} else {
    theForm.yourEmail.focus();
    return (false);
	}
	}
 if (theForm.userCommentCode.value =="")   {
    alert("Please enter Confirmation Code.");
    theForm.userCommentCode.focus();
    return (false);
  }
}
//-->