// JavaScript Document
function detect()
{ 
	var framesetpage = "/default.asp";
	var iframe2= new String(window.location.href);
	var qs= window.location.search;
	var ind= iframe2.indexOf("?");
	iframe2= iframe2.slice(0,ind);
	iframe2= iframe2.slice(0, iframe2.length-6)+".asp"+qs;
	var grandparent=parent.parent.location.href;
	var grandparentqs=grandparent;
	if(parent.parent.location.search=="") {
		grandparentqs=grandparent+qs;
	}
	if (grandparentqs == window.location.href||grandparentqs ==iframe2) {
		parent.location.href = framesetpage;
	}
}