protected JPanel createCustomInfoPanel() {
JPanel customPanel = createPanel();
customPanel.setLayout( new BoxLayout( customPanel, BoxLayout.Y_AXIS ) );
p1CapturesLabel_ = new InfoLabel();
p2CapturesLabel_ = new InfoLabel();
p1TerritoryLabel_ = new InfoLabel();
p2TerritoryLabel_ = new InfoLabel();
JPanel capturesPanel = new SectionPanel(GameContext.getLabel("NUMBER_OF_CAPTURES"));
PlayerList players = getController().getPlayers();
JLabel p1 = new InfoLabel( players.getPlayer1().getName());
JLabel p2 = new InfoLabel( players.getPlayer2().getName());
capturesPanel.add(new RowEntryPanel( p1, p1CapturesLabel_ ));
capturesPanel.add(new RowEntryPanel( p2, p2CapturesLabel_ ));
JPanel territoryPanel = new SectionPanel(GameContext.getLabel("EST_TERRITORY"));
JLabel blackTerr = new InfoLabel( GameContext.getLabel("EST_BLACK_TERR"));
JLabel whiteTerr = new InfoLabel( GameContext.getLabel("EST_WHITE_TERR"));
territoryPanel.add(new RowEntryPanel( blackTerr, p1TerritoryLabel_ ));
territoryPanel.add(new RowEntryPanel( whiteTerr, p2TerritoryLabel_ ));
customPanel.add( capturesPanel );
customPanel.add( territoryPanel );