# File rxml/base_transformer.rb, line 130
      def body(doc, title,style=nil)
        doc << "\n<head>"
        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>"
        doc << "<body>"
    
        yield doc 
        doc << "</body>"
    
      end