fEclipsePreferences = Owl.getPreferenceService().getEclipseScope();
fDisableXulrunner= System.getProperty(DISABLE_XULRUNNER) != null;
try {
fBrowser = createBrowser(parent, style);
} catch (SWTError e) {
MessageBox box = new MessageBox(parent.getShell(), SWT.ICON_ERROR | SWT.OK | SWT.CANCEL);
box.setText(Messages.CBrowser_ERROR_CREATE_BROWSER);
box.setMessage(Messages.CBrowser_ERROR_CREATE_BROWSER_MSG);
if (box.open() == SWT.OK)
BrowserUtils.openLinkExternal("http://www.rssowl.org/help"); //$NON-NLS-1$
throw e;
}
fLinkHandler = new HashMap<String, ILinkHandler>();