public string FamilyDetailsInfoWindow(String familyID)
        {
            Family f;
            Google google;


            google = new Google(ArenaContext.Current.User, HttpContext.Current.Request.ApplicationPath);

            //
            // Load the family we are trying to retrieve details for.
            //
            f = new Family(Convert.ToInt32(familyID));

            return(google.FamilyDetailsPopup(f, true, true));
        }