
function checkMe() {
    if ( document.apply.app_name.value == "" )
    { alert ( "Please fill in your name." );
        return false;   }
     if ( document.apply.app_country.value == "" )
    { alert ( "Please fill in your country." );
        return false;   }
     if ( document.apply.app_address1.value == "" )
    { alert ( "Please fill in your address." );
        return false;   }
     if ( document.apply.app_city.value == "" )
    { alert ( "Please fill in the city." );
        return false;   }
    if ( document.apply.app_state.value == "" )
    { alert ( "Please fill in the state." );
        return false;   }
    if ( document.apply.app_zip.value == "" )
    { alert ( "Please fill in the zip code." );
        return false;   }
    if ( document.apply.app_phone.value == "" )
    { alert ( "Please fill in your primary phone number." );
        return false;   }
    if ( document.apply.app_eligible.value == "" )
    { alert ( "Please fill in the question regarding your eligibity to work in the United States." );
        return false;   }
    if ( document.apply.app_email.value == "" )
    { alert ( "Please fill in your email address." );
        return false;   }
  
}
