What level do you want to see things?
Visitor = 0
Normal User = 1
Moderator = 2
Administrator = 3
So for the the sake of simplicity, you could use the following code to only allow Moderators and Administrators:<%
if (mlev = "2") or (mlev = "3") then
response.write "blah blah blah" & vbNewLine
end if
%>
I hope that helps...
<