If you want to make sure that your page does not get loaded into the frame of someone elses page, you can use javascript to make sure your page always "breaks out". Just put this code into your page somewhere between the <HEAD> and </HEAD> section of your page:
<SCRIPT language="JavaScript">
<!--
if (parent.frames.length > 0) {
parent.location.href = location.href;
}
// -->
</SCRIPT>
If the page is being loaded from one of your own framed pages and you want it to "break out", format your links like this:
<A HREF="http://www.yourdomain.com/anotherpage.html" target="_top">
HTH
-- Rich Rijnders
-- Irvine, CA US