Figures... I bang my head against this all afternoon and try something
I though would never work (and, of course, it did).
In my main.js file I create a function
function externalURL001(event)
{
window.location = '
http://www.foo.com/rest_of_path/';
}
And then assign that as my onclick handler for the button and VOILA!
works like a champ. Now, question I have is... Should I be utilizing a
more optimal method to achieve my goal?