Got it!! There is probably a more elegant method for achieving this, but the script below works for us. A new page opens in a browser, and displays information related to the variables passed to the script.
form1.page1.button::click - (JavaScript, client)
newURL1 = 'http://ourdomain.com.com/script.php?selected1=';
newURL2 = userselected1;
newURL3 = "&selected2=";
newURL4 = userselected2;
myNewURL = newURL1+newURL2+newURL3+newURL4;
app.launchURL(myNewURL, true);
Hope this helps someone else!!