I've gotten requests on how to break out of a frame from other pages. If you've ever noticed your webpage being linked by another site which catches it in their frame script, making it look like it's part of their site/page/project, cut and paste this onto your htm: <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Hide script from old browsers if (top.location !=self.location) { top.location = self.location } // End hiding script from old browsers --> </SCRIPT> </HEAD> Be sure to paste it directly under the <HTML> tag. Commercial sites are famous for locking pages into their frames. Linda