
function validForm(passForm){


	if(passForm.term.value==""){
		alert("You must enter a Search Term");
		return false;
	}
	return true;
} 
