public string GetInitialGame()
        {
            XmlNode xml = ChessAPI.getInitialGameXML();
            Game    g   = new Game();

            g.Reset();
            g.ActivePlay.GetBestMove();
            g.XmlDeserialize(xml);
            Move m = g.ActivePlay.GetBestMove();

            return("hi");
        }