function ValidateForm() {
	var testVal=document.forms["FeedbackForm"]["hunnypot"].value;

	if (testVal!="" && testVal!=null)
	{
		alert("Nope!");
		return false;
	}
}
