public void init() {
    setBorderLayout(0, 0);

    DruActionRelay relay = new DruActionRelay(this);

    dsp = new DScrollPane();
    dsp.setVerticalScrollBarAlways();

    addDComponent(dsp, DBorderLayout.CENTER);

    dlfp = new DruFlowPanel();

    bprevious = new DruButton("back");
    bprevious.setActionRelay(relay);

    bnext = new DruButton("next");
    bnext.setActionRelay(relay);

    dlfp.addPanel(bprevious);
    dlfp.addPanel(bnext);

    addPanel(dlfp, DBorderLayout.NORTH);

    htmlPane = new DHTMLPane();
    htmlPane.setEditable(false);
    htmlPane.setDefaultStyleSheet();

    dsp.setViewportView(htmlPane);
  }