window.onload = highlightTopNav;

function highlightTopNav(){
    
    // Highlight the top nav section depending on folder //
        
    var whatFolder = window.location.href.split("/")[5]; // change [5] to [3] when placed on final server
    var whatNav = document.getElementById(whatFolder);
	if (whatNav) {
    whatNav.className = 'selected';
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
