Escaping Frames
Every once in a while, a third party will try to trap your web site in a frame on their site. Sometimes, it's merely a lack of awareness about DNS that causes them to do so. Sometimes, it's mailcious. Regardless, there's an easy way to escape!
<html>
<body>
<script type="text/javascript">
if (top != self) top.location.replace(location);
</script>
<!-- your web site here -->
</body>
</html>