Response.Redirect("page1.asp?load=top")
[b]page1.asp[/b]
<html>
<head>
<%
If Request.QueryString("load") = "top" Then
Response.Write "<script type=""text/javascript"">if(window != top) window.top.location=this.location.href;</script>" & vbcrlf
End If
%>
</head>