# File rxml/working/xhtml_transformer.rb, line 36
      def body(doc, title,style=nil)
        doc << "<head>\r"
        if style
          doc << "<meta http-equiv=\"Content-Type\" content=\"text/xhtml; charset=UTF-8\" />\r<link href=\"" + style + "\" rel=\"stylesheet\" type=\"text/css\" />"
        end
        doc << "<title>"
        doc << title
        doc << "</title></head>\r"
        doc << "<body>\r"
    
        yield doc 
        doc << "\r</body>"
    
      end