<!--	
	function goSearch(){

		
		var ok = true;
		var errorText = "";
		
		var nameIndex = document.mainForm.name.selectedIndex; 
		var codeIndex = document.mainForm.code.selectedIndex;

		if(nameIndex == 0 && codeIndex == 0){
			ok = false;
			errorText += "Please select either a name or a code.";
		}//end if
		
	
		if(errorText.length > 0){		
			alert(errorText);
		}//end if	

		if(ok){
		    if(nameIndex == 0){
				document.mainForm.name.options[0].value = "";
			}
		    if(codeIndex == 0){
				document.mainForm.code.options[0].value = "";
			}
		    document.mainForm.submit();
		}//end if
		return ok;
	}//end goSearch()



// end hide -->

