public static void joinMUCRoom(GOIMAccount account, String room, String password) {
MultiUserChat muc = new MultiUserChat(account.xmpp.getConnection(),room);
account.chatWindowExtensionManager.openMUCWindow(room, muc);
try {
muc.join(account.getUsername(),password);
} catch (XMPPException e) {
//ErrorDialog.openError(PlatformUI.window.getShell(),"Error while Joining room","Error while trying to join Room: " + e.toString(),new Status(Status.ERROR,GOIMPlugin.ID,Status.OK,"Error while trying to join MUC room",e));
e.printStackTrace();
String msg = "Error while Joining MUC Channel " + room;
if(e.getXMPPError() != null) {