OnSuccess - Multiple If Statements - OpenURL

OnSuccess - Multiple If Statements - OpenURL

I have created a questionnaire that asks a series of questions. Upon submission, I want a specific URL (there are only 2 possible URL's) to open depending on the answers to the specific questions. For each question the user can only select "Yes" or "No" as each input field is a radio. 

Once one answer satisfies the condition to open URL2 and the user submits the form, I want URL2 to open. If no answer satisfies the condition to open URL2, then URL1 will open. Right now, it appears the code below is only allowing URL2 to open if all the requisite conditions are met to open URL2 versus only one. I only need one of the conditions to be met to open URL2 upon submission of the form.

I appreciate your help in advance. Here is part of my code:

  1. if((input.For_Profit == "No"))
    {
         openUrl("http://vistacontractingsolutions.com/products-services/government-certification/8a/pre-qualification/response2","parent window" );
    }
    else if((input.For_Profit == "Yes"))
    {
         openUrl("http://vistacontractingsolutions.com/products-services/government-certification/8a/pre-qualification/response","parent window" );
    }
    if((input.Broker == "No"))
    {
         openUrl("http://vistacontractingsolutions.com/products-services/government-certification/8a/pre-qualification/response","parent window" );
    }
    else if((input.Broker == "Yes"))
    {
         openUrl("http://vistacontractingsolutions.com/products-services/government-certification/8a/pre-qualification/response2","parent window" );
    }