Filter a view via a function using more than one argument

Filter a view via a function using more than one argument

Hi All,

I've created a simple function that will filter a pop-up view by the name of the associate (see code below):

   
  1.  void basSelectedInterpAvail(string Associate)
    {
    //This code will open a view which displays a list of all of the speakers of the selected language, displaying their availability information.
    openUrl("#View:vwLangAvail?cboAssociate=" + input.Associate + "", "popup window", "height=100,width=100");
    }




I'd like to add an addtional argument that would further filter by the language spoken (the current view shows the Associate Name, Language, and Availability).  Something like what is displayed below:

   
  1.  
     void basSelectedInterpAvail(string Associate, string Language)
    {
    //This code will open a view which displays a list of all of the speakers of the selected language, displaying their availability information.
    openUrl("#View:vwLangAvail?cboAssociate=" + input.Associate + "", "popup window", "height=100,width=100");
    }



My question is, how should I adjust the openURL statement?  Is this possible?

Thanks,


Leo