# File rxml/working/wap_transformer.rb, line 37
        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