no, there's absolutely no java applets.
here's the code that's causing the page to freeze in netscape.
<%
Sql_query = "SELECT * FROM msgbdmain Order By PostDate DESC"
Set msgs = Application("MainDBConn"

.execute(Sql_query)
dim counter
counter = 0
While Not msgs.EOF
MsgNum = msgs("MsgNum"

counter = counter+1
%>
<tr>
<td width="16%" align = "left" bgcolor="#FFFFFF"> <font size="2" class="blacktext"><%=msgs("PostDate"

%></font></td>
<td width="49%" align = "left" bgcolor="#FFFFFF"> <a href ="viewmsg.asp?msg=<%=MsgNum%>"><font face="Arial, Helvetica, sans-serif" size="2" class="blacktext"><%=msgs("Subject"

%></font></a></td>
<td width="22%" align = "left" bgcolor="#FFFFFF"> <a href = "mailto:<%=msgs("PosterEmail"

%>"><font size="2" class="blacktext"><%=msgs("Poster"

%></font></a></td>
<td width="13%" align ="center" bgcolor="#FFFFFF"><a href ="viewmsg.asp?msg=<% =MsgNum%>#replies" class="blacktext"><%=msgs("ReplyNum"

%></a></td>
</tr>
<%
if counter MOD 5 = 0 then
response.flush
end if
msgs.MoveNext
Wend
Set msgs = nothing
Set Sql_query = nothing
%>
and i have <%response.buffer=true%> at the head of the page.
i added <%response.buffer=true%> and the <%response.flush%> clause to try to fix the problem, which didn't work.
the page still freezes without the above 2 segments.
if you have netscape and don't mind to get freezed, go to
and see it for yourself.
(the page will eventually load)