currentPane = new TankView(this, new Level5());
}
body.add(currentPane, "TANKVIEW");
CardLayout c = (CardLayout) body.getLayout();
c.show(body, "TANKVIEW");
for (Component co : body.getComponents()) {
if (co == currentPane) {
currentPane.requestFocusInWindow();
}
}