function checkFrames()
{
	var thisPage,section,sectionPos;

	if (self == top)
	{
		if (SCRIPT_NAME == "")
		{
			thisPage = document.location.href;
		}
		else
		{
			thisPage = SCRIPT_NAME;
		}

		//document.location.href;
		section = thisPage;
		sectionPos = section.indexOf("/",7)
		section = section.substring(sectionPos,section.indexOf("/",sectionPos+1)) + "/default.asp?content=" + thisPage;
//		alert("Document is not in frameset, replace this page with :\n" + section.replace("/","/ ","g"));
		top.location.replace(section);
	}
}
checkFrames()

