function initPage() 
{
	this.focus();
	if (parent.updateNav) {
		parent.updateNav(this.location.pathname);
	} else if (parent.parent.updateNav) {
		parent.parent.updateNav(this.location.pathname);
	} else {
		top.location.href = "/index.html?" + this.location.pathname;
	}
}
