text = "You have been invited to " + (String)infopool.get("invit_room") + " from "+(String)infopool.get("invit_from");
}
subscriber.setLayout(new BorderLayout());
MyTextArea t = new MyTextArea(text, 0, 100);
subscriber.addComponent(BorderLayout.CENTER,t);
subscriber.addCommand(Contents.accept);
subscriber.addCommand(Contents.deny);
subscriber.setCommandListener(this);
subscriber.show();