protected static void showResults(final String url) {
final DefaultBrowserSupport wb = new DefaultBrowserSupport();
Display.getDefault().asyncExec(new Runnable() {
public void run() {
try {
wb.createBrowser(wb.AS_EDITOR, "myId", "What's New", "What's new with CFEclipse")
.openURL(new URL(url));
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (MalformedURLException e) {