function infopackValidation(theForm) {
    var retval = true;


    if (theForm.First_Name.value == "") {
        alert("Please enter your first name.");
        theForm.First_Name.focus();
        return (false);
    }


    if (theForm.Last_Name.value == "") {
        alert("Please enter your last name.");
        theForm.Last_Name.focus();
        return (false);
    }


    if (!isEmailAddr(theForm.Email_Address.value)) {
        alert("Please enter a complete email address.");
        theForm.Email_Address.focus();
        return (false);
    }

    if (theForm.Phone.value == "") {
        alert("Please enter your phone.");
        theForm.Phone.focus();
        return (false);
    }

    if (theForm.Your_Qualifications.value == "") {
        alert("Please enter your qualifications.");
        theForm.Your_Qualifications.focus();
        return (false);
    }

    return (retval);
}

