function searchProcess(item) {
	var search_type_index = document.getElementById('jumpMenu').selectedIndex;
	var search_type = document.getElementById('jumpMenu').options[search_type_index].value;
	var search_var = document.form2.searchfor.value;

	if (search_type == "products") {
		document.prodsearch.search_value.value = search_var;
		document.prodsearch.submit(); 
	}		
	if (search_type == "companies") {
		document.compsearch.search_value.value = search_var;
		document.compsearch.submit(); 
	}		
	if (search_type == "protocols") {
		var searchFor = document.form2.searchfor.value;
		var windowParams = 'http://www.cshprotocols.org/cgi/search?tocsectionid=Kit&tocsectionid=Product+Protocol&fulltext=';
		windowParams += searchFor;
		windowParams += '&resultformat=1&hits=10&sortspec=relevance&hitsbrief=25';
		window.open(windowParams,'kitsearch','toolbar=1,status=1,location=1,width=800,height=600,resizable=1,scrollbars=1');
	}
	if (search_type == "kits") {
		var searchFor = document.form2.searchfor.value;
		var windowParams = 'http://www.cshprotocols.org/cgi/search?tocsectionid=Kit&tocsectionid=Product+Protocol&fulltext=';
		windowParams += searchFor;
		windowParams += '&resultformat=1&hits=10&sortspec=relevance&hitsbrief=25';
		window.open(windowParams, 'kitsearch', 'toolbar=1,status=1,location=1,width=800,height=600,resizable=1,scrollbars=1');
	}
}
