            <ul>
			<%
            sql= "select * from wz where gb='ch' and bigclass='About Us' order by wzclassid asc"
            set rs = conn.execute( sql )
            if rs.bof and rs.eof then
            response.Write("<li>No add</li>")
            else
            do while not rs.eof
            %>
            <li<% if rs("wzid") = wzid then response.Write(" class='foc'") %>><a href="about.asp?wzid=<%= rs("wzid") %>"><%= rs("wzName") %></a></li>
            <%
            rs.movenext
            loop
            end if
            rs.close
            set rs = nothing
            %>
            </ul>
