function jumpToLocation(form)  {
	var jumpTo = form.anchorLocation.options[form.anchorLocation.selectedIndex].value;
	window.location = jumpTo;
}

/*
function selectManufacturer(form) {
	var mfgr_ID = form.manufacturer.options[form.manufacturer.selectedIndex].value;
	var destination = "spin-on_filters/manufacturers.cfm?mfgrID=" + mfgr_ID;
	CMFilters = window.open(destination,'CM_Filters','resizable,scrollbars=yes,top=20,left=20,width=505,height=300');
	CMFilters.focus();
}
*/