function checkForm() {
var correct = true;
if (document.forms['entryForm'].FNAME.value == "") {correct = false; alert("Please enter your First Name"); return correct;}
if (document.forms['entryForm'].LNAME.value == "") {correct = false; alert("Please enter your Last Name"); return correct;}
if (document.forms['entryForm'].STREET.value == "") {correct = false; alert("Please enter your Street Address"); return correct;}
if (document.forms['entryForm'].CITY.value == "") {correct = false; alert("Please enter your City"); return correct;}
if (document.forms['entryForm'].STATE.value == "") {correct = false; alert("Please enter your State"); return correct;}
if (document.forms['entryForm'].ZIP.value == "") {correct = false; alert("Please enter your Zip Code"); return correct;}
if (document.forms['entryForm'].PHONE.value == "") {correct = false; alert("Please enter your Phone Number"); return correct;}
if (document.forms['entryForm'].EMAIL.value == "") {correct = false; alert("Please enter your Email Address"); return correct;}
else {return correct}
}

