<!--
// Modified Oct 2002 to navigate out of a frame-less page, and resume in the frame.
var homeframe='index.asp';

function FrameNav(section) {//alert(section);
// If this page is loaded by mistake, force display of the frames page.
	if (parent == self)
		{
		//Do nothing if we are not debugging in Front Page
		//Otherwise, goto home page in main frame.
		var root = thisURLroot();
		if (!(root.indexOf("FrontPage",0) > 0)) 
			{top.location.href = root + homeframe + '?Start=' + thisPage();}}
			
/*	else 
	// We are in a frameset. Update the pressed menu button to this section
		{parent.frames['contents'].updateMenu(section);}
*/			
}

	
function thisURLroot() {
// Calculate the base URL for this page.
	var Ourpath = window.location.href;
	Ourpath = Ourpath.substr(0, Ourpath.lastIndexOf('/') + 1);
	return Ourpath ;
}
function thisPage() {
// Calculate the URL for this page.
	var OurPage = window.location.href;
	OurPage = OurPage.substr(OurPage.lastIndexOf('/') + 1, OurPage.length);
	return OurPage ;
}
//-->