super("Help", true, true, true, true);
setIconifiable(true); // PENDING(steve) shouldn't need this but do
setFrameIcon( (Icon)UIManager.get("Tree.openIcon")); // PENDING(steve) need more general palce to get this icon
setBounds( 200, 25, 400, 400);
JPanel p = new JPanel();
// p.setOpaque(false);
p.setOpaque(true);
p.setBackground(UIManager.getColor("window"));
p.setLayout(new BorderLayout() );
HtmlPane html = new HtmlPane();
p.add(html, BorderLayout.CENTER);
// p.add(buildToolBar(), BorderLayout.NORTH);
getContentPane().add(p);