public cxHelper() {
JEditorPane jep = new JEditorPane();
dlg = new JDialog(this, "Help", false);
EditorKit ek = new HTMLEditorKit();
ek.install(jep);
jep.setEditorKit(ek);
try {
jep.read(getClass().getResourceAsStream("hlp/gxTool.htm"), "");
} catch (Exception e) {
jep.setText("<html>�� ������� ��������� [gxTool.htm]</html>");