function findSchool() {
	
	var locationValue = document.quickfindform.location[document.quickfindform.location.selectedIndex].value;
	var programValue = document.quickfindform.program[document.quickfindform.program.selectedIndex].value;
	var degreeValue = document.quickfindform.degree[document.quickfindform.degree.selectedIndex].value;
	
	if (locationValue == "notselected" && programValue == "notselected" && degreeValue == "notselected") {
		//if none are selected, just go to the index page
		
		window.location.href = "index.html";
		
	} else { 
		
		var targetPath = "html/";
		var targetHtmlPage = "";
		var addedLocation = false;
		var addedProgram = false;
		
		if (locationValue != "notselected") {
			targetPath += locationValue;
			targetHtmlPage += locationValue;
			addedLocation = true;
		}
		
		if (programValue != "notselected") {
			if (addedLocation) {
				targetPath += "-";
				targetHtmlPage += "-";
			}
			
			targetPath += programValue;
			targetHtmlPage += programValue;
			addedProgram = true;
		}
		
		if (degreeValue != "notselected") {
			if (addedLocation || addedProgram) {
				targetPath += "-";
				targetHtmlPage += "-";
			}
			
			targetPath += degreeValue;
			targetHtmlPage += degreeValue;
		}
		
		targetHtmlPage += ".html";
		
		var targetUrl = document.quickfindform.resourcePrepend.value + targetPath + "/" + targetHtmlPage;
		
		window.location.href = targetUrl;
	}
}