commandsPane = new JPanel();
send = new JButton("Enviar");
send.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if ( ((Host)hostComboBox.getSelectedItem()).getHostName().equalsIgnoreCase(Constants.MASS_MESSAGE_TEXT))
new Thread(new MassMessageSender()).start();
else
enviarImagen(((Host)hostComboBox.getSelectedItem()).getHostName(), ((Host)hostComboBox.getSelectedItem()).getHostIP(), false);
}
});