Hi
After this code in pop_profile.asp:
=======================
<!--#INCLUDE FILE="config.asp" -->
<!--#INCLUDE FILE="inc_functions.asp" -->
<%
if not(strUseExtendedProfile) then
%>
<!--#INCLUDE FILE="inc_top_short.asp" -->
<%
else
%>
<!--#INCLUDE FILE="inc_top.asp" -->
<% end if
=======================
Add this:
=======================
if mLev < 1 then
Response.Write "<p align=center>You have to logon to view member's profile<br><br><a href=""javascript:history.go(-1)"">Go back</a></p>"
if not(strUseExtendedProfile) then
%>
<!--#INCLUDE FILE="inc_footer_short.asp" -->
<%
else
%>
<!--#INCLUDE FILE="inc_footer.asp" -->
<% end if
response.end
end if %>
====================
Good luck