
searchRedirect = function(thisForm) {
	path = "/search/";
	if (typeof thisForm.CategoryURL  != "undefined" && thisForm.CategoryURL.value != '') {
		path = path + thisForm.CategoryURL.value + "/" ;
	}
	if (typeof thisForm.EquipmentURL  != "undefined" && thisForm.EquipmentURL.value != '') {
		path = path + thisForm.EquipmentURL.value + "/" ;
	}
	$(location).attr('href',path);
}


