function checkform2() {
		var the=document.myform2;
		if (the.name.value=="") {
			alert('Please enter a name to search.');
			the.name.focus();
			return false;
		}
		return true;
	}