<%
scriptname="usindex1.asp"
response.write "Catalog Alphabetical Index
"
response.write "See Catalog by Category
"
for counter= 65 to 90
pad = chr(counter)
ref="" & pad & ""
response.write ref & " "
next
response.write "
"
%>
<%
columncount = 3
COLUMNAMOUNT = 3
do while not rsCatList.EOF
columncount = columncount + 1
if columncount mod COLUMNAMOUNT = 0 then
work45 = work45 & "
"
end if
work1 = "uscatalog3.asp?ref=" & rsCatList("sect_ID")
makelevel rsCatList("sect_ID")
work45 = "" & rsCatList("sect_nm") & " " & index2 & " | "
if columncount mod COLUMNAMOUNT = 0 then
work45 = work45 & "
"
end if
RESPONSE.WRITE WORK45
rsCatList.MoveNext
loop
Set dbConnection = nothing
Set rsCatList = nothing
%>