// if we are we the top frame, redirect

if (top==self) {
	var	url=top.location.href.split("?");
	var	loc="/trails/trails.cgi/default/index.html";
	var	query=url[1];
	if (query) {
		loc=loc+"?"+query;
	}
	top.location.href=loc;
}

