public void RunDrama()
        {
            DramaSection section = drama_script.getNext();

            if (section == null)
            {
                GoNext();
            }
            else
            {
                AnalysisSection(section);
            }
        }