if mlev = 4 then
strSql3 = " WHERE M_NAME <> 'n/a' "
else
strSql3 = " WHERE M_STATUS = " & 1
end if
And replace it with the following: if mlev = 4 then
strSql3 = " WHERE M_NAME <> 'n/a' "
else
strSql3 = " WHERE M_LEVEL<2 AND M_STATUS = " & 1
end if
That will hide moderators and administrators from regular members and moderators (unless they happen across them when searching) but still display them to administrators.