private void OnGetTrialLicense()
        {
            //Get new 30 day cryptoLicense from server
            string userData = "Organisation=" + this.LicenseTrial_Organisation + " (Evaluation-Version)";

            userData += "#Name=" + this.LicenseTrial_Name;
            userData += "#Mail=" + this.LicenseTrial_Mail;
            userData += "#Liteversion=False";

            if (cryptoLicense.GetLicenseFromProfile("Trial", userData))
            {
                cryptoLicense.Save();
                this.IsLicenseValid = true;
                this.ParseLicenseInfosForThanks();
                this.CurrentUserControl = new Views.LicenseThanksUserControl();
            }
            else
            {
                Xceed.Wpf.Toolkit.MessageBox.Show("Fehler beim Verbindungsaufbau zum Lizenzserver!", "RescueInformationSystem - ERROR", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
                Environment.Exit(0);
                return;
            }
        }