public ActionResult CheckPassword(string password)
        {
            var mgr = new UserProfileRepository();

            return(Json(mgr.CheckPassword(int.Parse(User.Identity.Name), password)));
        }