public string GroupDetailsInfoWindow(String groupID)
        {
            Group  g;
            Google google;


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

            //
            // Load the person we are trying to retrieve details for.
            //
            g = new Group(Convert.ToInt32(groupID));

            return(google.SmallGroupDetailsPopup(g, true, true));
        }