function obd_search_validate(form) {
	if (form['s'].value) {
		return true;
	} else {
		alert("You must enter a word into the search box before clicking the Search button");
		return false;
	}
}