You would need to add this to the button event:

String url = "www.wherever.com"
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));


That SHOULD open up the url in the default...