function checkFrame(frameURL) {
	innerPage = self.location;
	outerPage = top.location;

	if (innerPage == outerPage) {
		top.location.href = frameURL;
	}
	
}