<!--

function CheckFrames()
{
	var framedPage = location.search;
	if (self != top)top.location.replace(self.location);
	if (framedPage.length > 1)
	{
		framedPage = framedPage.substring(1);
		var theSplit = framedPage.lastIndexOf('~');
		var thePage = framedPage.substring(0,theSplit);
		var theFrame = framedPage.substring(theSplit+1);
		eval("top."+theFrame+".location.replace('"+ thePage+"')");
	}
}

function FrameIt(WindowName, Location)
{
    if (window.name!=WindowName
		 && !((self.innerHeight == 0) && (self.innerWidth == 0)))
		top.location.replace(Location);
}
// -->
