function NavTop() {
	if (self==top || top.location.href.indexOf('index.aspx')<0) {
		top.location.href = "index.aspx";
	}
}
function NavMain() {
	if (self != top) { 
		top.location.href=self.location.href;
	}
}

