/// <summary>
		/// Opens the specified SSO URL to the user.
		/// </summary>
		/// <param name="ssoUrl">The Uri that the user was redirected to in order to perform their SSO authentication.</param>
		protected override void OpenSsoPageInternal(Uri ssoUrl)
		{
			SsoWindow window = new SsoWindow();
			window.ShowSsoPage(this, ssoUrl);
		}
        /// <summary>
        /// Opens the specified SSO URL to the user.
        /// </summary>
        /// <param name="ssoUrl">The Uri that the user was redirected to in order to perform their SSO authentication.</param>
        protected override void OpenSsoPageInternal(Uri ssoUrl)
        {
            SsoWindow window = new SsoWindow();

            window.ShowSsoPage(this, ssoUrl);
        }