label.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
// get the app instance from the session manager
AbstractApplication app = OswClient.getInstance()
.getCurrentApplication();
ProfileWindow profileWindow = (ProfileWindow) app
.addWindow(ProfileWindow.class.toString(), 1);
profileWindow.setJID(recipientJID);
profileWindow.show();
}
});