%@LANGUAGE="VBSCRIPT" CODEPAGE="950"%>
javastr="
"
<%
set rs=server.createobject("adodb.recordset")
rs.open "select * from productclass where (parentid=0 and classid>1) order by setting desc",conn,1,1
do while not rs.eof
%>
javastr=javastr+"- <%=rs("classname")%>
"
<%
rs.movenext
if rs.eof then exit do
loop
rs.close
%>
javastr=javastr+"
"
document.write(javastr)