function rmSubmitVrfy() {
    if ( $F('compname') == '' ||
         $F('compaddr') == '' ||
         $F('privatename') == '' ||
         $F('publicname') == '' ||
         $F('compdescr') == '' ||
         $F('stocksymbol') == '' ||
         $F('contname') == '' ||
         $F('contphone') == '' ||
         $F('recaptcha_response_field') == '' ||
         $F('contemail') == '' ) {
       alert('All fields are required for form submission.');
       return false;
    } else {
       return true;
    }
}

