// check_frame.js
// 
// Put current page into _main of frameset

if (top.location == self.location) {
	alert("This page is part of a Framed Site - Continue to Main Framed Pages");
	top.location.href = "index.htm";
	}
