function validateLinkRequest () {

var isHuman = false;

// check for test word in field
	if ((document.getElementById("humantest").value == "hello")) {
		isHuman = true;
	}
return isHuman;
}