label.registerKeyboardAction(myDownReleasedListener,
"DownReleased", KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, 0,
true), JComponent.WHEN_IN_FOCUSED_WINDOW);
label.setRequestFocusEnabled(true);
label.addMouseListener(new FocusMouseListener());
// Set the default size.
// Note that the location is of the frame, while the size
// is of the scrollpane.
pack();