function validateSearchTerms(theForm){

	if (theForm.terms.value != ""){
		Pass = CheckCharacters("AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz0123456789 ", theForm.text, "search terms");
		if (!Pass){
			theForm.terms.focus();
			return false;
		}
	}

	return true;
}
