*/
private void addBuddy(String groupName, String buddyAlias, String buddyId) {
Roster buddyGroups = ConnectorThread.getInstance()
.getRoster();
WaitDialog wait = new WaitDialog(this, null, resources.getString("pleaseWait"));
wait.setVisible(true);
setVisible(false);
Thread thread = new Thread(new AddBuddyThread(wait, groupName,
buddyAlias, buddyId, this));
thread.start();