public static string GetAllMyGalleryPAObjects()
        {
            string rtnVal = string.Empty;

            var proxy = new BusinessProxy();

            try
            {
                //GenerateJqueryErrorForTesting();

                rtnVal = proxy.GetAllMyGalleryPAObjects(Guid.Parse(HttpContext.Current.Session["UserId"].ToString()));
            }
            catch (Exception ex)
            {
                Log.Error(ex);
            }

            return(rtnVal);
        }