function checkForm(theform)
{
    if (theform.firstname.value == "")
    {
        alert("Please Enter Your First Name");
        theform.firstname.focus();
        return false;
    }
    if (theform.lastname.value == "")
    {
        alert("Please Enter Your Last Name");
        theform.lastname.focus();
        return false;
    }
    if (theform.address.value == "")
    {
        alert("Please Enter Your Address");
        theform.address.focus();
        return false;
    }
    if (theform.city.value == "")
    {
        alert("Please Enter Your City");
        theform.city.focus();
        return false;
    }
    if (theform.state.value == "")
    {
        alert("Please Enter Your State");
        theform.state.focus();
        return false;
    }
    if (theform.zip.value == "")
    {
        alert("Please Enter Your Postal Code");
        theform.zip.focus();
        return false;
    }
    if (theform.email.value == "")
    {
        alert("Please Enter Your Email Address");
        theform.email.focus();
        return false;
    }
    return true;
}

