function goToRace(form) {
	var index = form.race.selectedIndex;
	if (form.race.options[index].value != "") { 
			window.location.href = form.race.options[index].value;
	}
}

function goToCounty(form) {
	var index = form.county.selectedIndex;
	if (form.county.options[index].value != "") { 
			window.location.href = "/collections/special/2009/election-results/county.php?county_id=" + form.county.options[index].value;
	}
}

