protected void Page_Load(object sender, EventArgs e)
        {
            AuthenticationRequest authenticationRequest = new AuthenticationRequest(Scope.OpenID | Scope.Email | Scope.Profile);

            authenticationRequest.State = Request.Params["ReturnUrl"];
            AuthenticationUtility.Authenticate(authenticationRequest);
        }