<!-- //hide the script
function form_validator(theForm)
{

	if(theForm.email.value == "") {
		 alert("Please enter your E-mail Address");
		 theForm.email.focus();
		 return(false);
	}

	if(theForm.comments.value == "") {
		 alert("Please enter your message.");
		 theForm.comments.focus();
		 return(false);

	}

	return (true);
}
// end script hiding -->