JPanel messagePanel = new JPanel(new BorderLayout());
messagePanel.add(imageLabel, BorderLayout.NORTH);
messagePanel.add(textPanel, BorderLayout.CENTER);
messagePanel.add(buttonPanel, BorderLayout.SOUTH);
JPanel content = new MoreInfoPanel(messagePanel, getMoreInfoPane(), "More info...");
content.setOpaque(true);
this.setContentPane(content);
this.pack();
Point loc = GUIFactory.getCenterLoc(this.getWidth(), this.getHeight());
this.setLocation(loc);