scrollPane.setPreferredSize(new Dimension(700, 800));
manFrame.setContentPane(scrollPane);
manFrame.pack();
manFrame.setVisible(true);
URL cvdLinkUrl = new URL(manURL.toString() + "#ugr.tools.cvd");
HyperlinkEvent e = new HyperlinkEvent(editorPane, HyperlinkEvent.EventType.ACTIVATED,
cvdLinkUrl);
editorPane.fireHyperlinkUpdate(e);
} catch (Exception e) {
this.main.handleException(e);
}