oldHnav= null;

function LoadSecondaryPage(strPage, strLocation) {
		<!-- High School Pages>
		if (strPage == "HighSchool") window.location.href='Schools/' + strLocation;

		<!-- Conference Pages>
		else if (strPage == "Conference") window.location.href='Conference/' + strLocation;
		else{	alert("Please select an item from the listbox to continue") }
}

function LoadPrimaryPage(strPage, strLocation) {
		
		<!-- Primary High School Page>
		if (strPage == "HighSchool") window.location.href=strLocation;
		
		<!-- Primary Statbay Statewide>
		else{ window.location.href=strLocation + '/' + strPage + '.html';}
}
