private UserProfileDialog(LoginConfiguration loginConfig, Window owner) {
super(owner, Strings.get("UserProfile.Title"));
this.loginConfig = loginConfig;
downloadProcess = new DownloadUserProfileJob(this);
downloadMonitor = new DefaultUiJobProgressMonitor(downloadProcess, false);
profilePanel = new UserProfilePanel();
getDefaultLayout().center(profilePanel);
getOKButton().setEnabled(false);
pack();
manageLocation();