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