if (m_helpForm != null) {
getDisplay().remove(m_helpForm);
hideHUDElements();
} else {
hideHUDElements();
m_helpForm = new HelpWindow();
m_helpForm.setWidth(UI_WIDTH);
m_helpForm.setHeight(300);
m_helpForm.setLocation(m_buttons[7].getX(), 67 - getTitleBar().getHeight());
getDisplay().add(m_helpForm);
}