/**
Create a label with the appearance of a hyperlink.
@return the label
*/
protected ExtendedJLabel linkLabel() {
ExtendedJLabel label = normalLabel();
label.setForeground(HtmlDisplayTextArea.COLOR_LINK);
label.setRequestFocusEnabled(true);
label.setUnderlined(true);
return label;
}