* Default constructor
*/
public LanguageDialog() {
getContentPane().setX(getContentPane().getX() - 1);
getContentPane().setY(getContentPane().getY() + 1);
m_black = new Color(0, 0, 0);
this.setSize(350, 320);
this.setLocation(400 - 170, 250);
this.setTitle("Pokenet Language Selection");
this.setBackground(new Color(0, 0, 0, 140));
this.getTitleBar().setForeground(m_black);
this.setDraggable(false);
this.setResizable(false);
this.getTitleBar().getCloseButton().setVisible(false);
/*
* Create the info label
*/
m_info = new Label(" Welcome | Bienvenido | Bienvenue \n Bem-vindo | Tervetuloa");
m_info.pack();
m_info.setLocation(60, 8);
m_info.setForeground(new Color(255, 255, 255));
this.add(m_info);
/*
* Create all the server buttons
*/