// Returns the country with the best in the tree - public so that it can be accesed by another form
        public string GetBestTradePotential()
        {
            string country = "";

            CTree.CalculateBestTradePotential(ref country);
            return(country);
        }