# File ValidForm_html.rb, line 158
        def to_html(withValidation=true,indentLevel=0,&block)
                tabs = "\t"*indentLevel

                preCode = tabs + %{<fieldset#{hashes_toattributes({:id=>@id},@attributes)}>\n}
                preCode << tabs + %{\t<legend>#@label</legend>\n\n} if @label
                endCode = tabs << "</fieldset>\n"

                to_html_withwrapper(withValidation,indentLevel,preCode,endCode,block)
        end