<!-- Begin

function chapterchange() {
if (document.form2.chapter.selectedIndex == "1") {location="bluerid.htm"}
if (document.form2.chapter.selectedIndex == "2") {location="chaphill.htm"}
if (document.form2.chapter.selectedIndex == "3") {location="charl.htm"}
if (document.form2.chapter.selectedIndex == "4") {location="durham.htm"}
if (document.form2.chapter.selectedIndex == "5") {location="norman.htm"}
if (document.form2.chapter.selectedIndex == "6") {location="wake.htm"}
if (document.form2.chapter.selectedIndex == "7") {location="wilm.htm"}
if (document.form2.chapter.selectedIndex == "8") {location="winston.htm"}
}


	document.write("<FORM NAME='form2'>")
	document.write("<SELECT NAME='chapter' name='chapter' onchange='chapterchange()'>")
	document.write("<font size=-1>") 
	document.write("<option selected>Select Chapter</option>")
	document.write("<option>Blue Ridge</option>")
	document.write("<option>Chapel Hill</option>")
	document.write("<option>Charlotte</option>")
	document.write("<option>Durham</option>")
	document.write("<option>Lake Norman</option>")
	document.write("<option>Wake</option>")
	document.write("<option>Wilmington</option>")
	document.write("<option>Winston Salem</option>")
	document.write("</select></font></form>")
// End -->
