function contactCheck() {
obj = document.FormName;
if (obj.name.value.length < 1 && obj.email.value.length < 1 && obj.question.value.length < 1) {
 alert ("Please fill in at least one field. We'd like to know your thoughts or questions. Thanks.");
 obj.name.focus();
 return false;
} else {
 return true;
}
}