.createEtchedBorder(EtchedBorder.RAISED));
bottom.add(authorScroller);
bottom.add(Box.createRigidArea(horizontalSpace));
// Pane for "see also" information.
JEditorPane seeAlsoPane = new JEditorPane();
seeAlsoPane.addHyperlinkListener(this);
seeAlsoPane.setContentType("text/html");
seeAlsoPane.setEditable(false);
JScrollPane seeAlsoScroller = new JScrollPane(seeAlsoPane);
Dimension seeAlsoSize = new Dimension(_SEE_ALSO_WIDTH, _BOTTOM_HEIGHT);
seeAlsoScroller.setPreferredSize(seeAlsoSize);