// only do this stuff if page is in proper frameset
if (top!=self)  {
	top.navNext = true
	top.refLibShow = false
	top.navigLoaded=false
	
	// url path is split into directories allowing us to identify the current page and module
	var path = self.location.pathname
	directories = path.split(top.delimiter)
	top.thisPage = directories[directories.length-1]
	top.thisModule = directories[directories.length-2]
	top.thisModLib = directories[directories.length-3]
	
	if (top.currPage==top.thisPage) top.newPage = false
	else {
	top.newPage=true
	top.currPage=top.thisPage
	}
	
	if (top.currModule==top.thisModule) top.newModule=false
	else {
	top.newModule=true
	top.prevModule=top.currModule
	top.currModule=top.thisModule
	}

	top.modnav.location = "navig.htm"

}
