if(top == self) {
	var topWindow = "/index.html";
	var currURL = unescape(window.location.pathname) + unescape(window.location.hash);
	var newURL = topWindow + "?" + currURL;
	if (top.location.replace)
		top.location.replace(newURL);
	else
		top.location.href = newURL;
}


