<!--

//***************************************
//Opens a link in an informational window
//***************************************
function infoW(href) 
{
	window.open(href,"Viewer","width=600,height=400,screenX=0,screenY=0,dependent,scrollbars,resizable,menubar,status")
}



//************************************************
//generates code to display a left navigation item
//************************************************
function displayLeftNavItem(strName, strFileName, strLevel, strURL) {
   //remove extension from filename, keep dot
   strFileName = strFileName.substring(0, strFileName.lastIndexOf(".")+1);
   if (location.pathname.indexOf(strFileName) == -1) {
	document.write('<div class="level' + strLevel + '"><a href="' + strURL + '">' + strName + '</a></div>');
   } else {
	document.write('<div class="level' + strLevel + '_on"><span>> ' + strName + '</span></div>');
   }
   return;
}


/***********************************************************************
 * Resizes the height of the midsection div to match the content div   *
 * which dynamically genereates the size of the white background based *
 * on the amount of content on the sub-pages and sets the height to    *
 * 294 on the home page so the lower right curve lines up correctly    *
 ***********************************************************************/
function adjustColumnHeights()  
{  
 //alert("got here2");
 // Get natural height of the content div  
 var maxHeight = 0;
 maxHeight = xHeight("content"); 
 
 //set the minimum height necessary for the home page
 //alert("maxHeight=" + maxHeight);
 if (maxHeight < 294) {
	maxHeight = 294; 
 }
 //alert("maxHeight=" + maxHeight);
 
 // Assign height to the midsection div
 xHeight("midsection", maxHeight);

}

//  End -->