*/
public void showBag() {
attackPane.setVisible(false);
endPane.setVisible(false);
pokesContainer.setVisible(false);
m_bag = new BattleBag();
m_bag.setAlwaysOnTop(true);
m_bag.setZIndex(10000000); // Ridiculous z-index ensures that the bag is on top.
GameClient.getInstance().getDisplay().add(m_bag);
}