function verifySubmit(theQuery){
	if (theQuery.value == ''){
		window.alert("Your search is blank");
		return false;
	}
	return true;
}
