gbc.gridheight = 6;
gbc.insets = new Insets(1, 1, 1, 1);
String[] countries = { "Portugal", "Spain", "France", "Italy",
"Germany", "Poland", "Austria", "Belgium", "Denmark", "Norway",
"Sweden"};
_countryList = new JList(countries);
_countryList.setVisibleRowCount(6);
_countryList.setColumns(12);
_countryList.addListSelectionListener(this);
JScrollPane scrollpane = new JScrollPane(_countryList);
TitledBorder viewportBorder = new TitledBorder("Countries");