# File rxml/working/base_transformer.rb, line 66
      def textarea(doc, txt="", height=nil, width=nil, attr=nil, id=nil) 
        doc << "\n<textarea #{attr}"
        doc << " row=\"" << height << "\"" if height
        doc << " cols=\"" << width << "\"" if width 
        doc << ' ' << "name=\"" << id << "\">" << txt << '</textarea>'
      end