// Search Criteria (category) field check
//&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
function checkfrm() {
	var f = document.searchfrm;
	var badCount = 0;
	var msg = "";

	var curfld=("f.f_criteria")
	var this_category = eval(curfld +".options[" +curfld +".selectedIndex].value");
	if (this_category == "None Selected") {
		msg = msg + "\nPlease select a Category";
		badCount = badCount + 1;
	}
	
	if (badCount == 0) {
    	return true;
    } else {
		alert (msg);
		return false;
	}
	
}
	
