How can you stop someone from framing your site? First of all, what does that mean? If you don't know what it means, you probably won't care about this blog but I'll give a little explanation, anyway. You know when you do a Google image search and when you click on the images, it takes you to the site but there is a bar at the top of their site with Google's information? Well, that's Google framing the original site. They put the site in what's called a frame in HTML. Here's a little javascript code to break out of frames. Just put this code in the onLoad attribute of the body tag.
if (self != top) top.location.href = self.location.href;