Prevent the page from being opened within another frames page.

Inserting the code below will prevent your page from opening within another framed page. It will open (_top) for occupy the full page.
JavaScript


<script language="Javascript">

if (parent.frames.length > 0) {
    parent.location.href = self.document.location}
    
</script>

Posted by fbrefere001 on Wednesday January 15, 2003