function Form_Validator(theForm){

        if (theForm.firstname.value == ""){
                alert("First name is a required field");
                theForm.firstname.focus();
                return (false);
        }
        if (theForm.lastname.value == ""){
                alert("Last name is a required field");
                theForm.lastname.focus();
                return (false);
        }
        if (theForm.highschool.value == ""){
                alert("Name of High School is a required field");
                theForm.highschool.focus();
                return (false);
        }
        if (theForm.gradyear.value == ""){
                alert("High School Graduation Year is a required field");
                theForm.gradyear.focus();
                return (false);
        }
        if (theForm.currentaddress.value == ""){
                alert("Current Address is a required field");
                theForm.currentaddress.focus();
                return (false);
        }
        if (theForm.currentcity.value == ""){
                alert("Current City is a required field");
                theForm.currentcity.focus();
                return (false);
        }
        if (theForm.currentzip.value == ""){
                alert("Current Zip Code is a required field");
                theForm.currentzip.focus();
                return (false);
        }
}
