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/2006/campaign/results/county.php?county_id=" + form.county.options[index].value;
	}
}

function goToCongDist(form) {
	var index = form.cdistrict.selectedIndex;
	if (form.cdistrict.options[index].value != "") { 
			window.location.href = "/collections/special/2006/campaign/results/cong_dist.php?district=" + form.cdistrict.options[index].value;
	}
}

function goToSenDist(form) {
	var index = form.sdistrict.selectedIndex;
	if (form.sdistrict.options[index].value != "") { 
			window.location.href = "/collections/special/2006/campaign/results/stsenate_dist.php?district=" + form.sdistrict.options[index].value;
	}
}
function goToLegDist(form) {
	var index = form.ldistrict.selectedIndex;
	if (form.ldistrict.options[index].value != "") { 
			window.location.href = "/collections/special/2006/campaign/results/sthouse_dist.php?district=" + form.ldistrict.options[index].value;
	}
}

