Breaking A Page Out of Frames Automatically

<script language="javascript" type="text/javascript">
<!--
if (top.location != self.location) {
top.location.replace(self.location)
}
//-->
</script>

Place the above code after your </title> tag, but before your </head> tag and your website will never get stuck in someone else's frames.

Main?