"Press the F5, F6 and F7 keys to switch between panes"));
JPanel centerpan = new JPanel();
centerpan.setLayout(new FlowLayout(FlowLayout.LEFT, 2, 1));
_tabpane = new JTabbedPane();
_tabpane.addTab("General", null, new GeneralPane(), "F5");
_tabpane.addTab("Device Manager", null, new DevicePane(), "F6");
_tabpane.addTab("Performance", null, new PerformancePane(), "F7");
addKeyListener(this);
centerpan.add(_tabpane);