function Search_Validator(theForm)
{
	if (theForm.phrase.value.match('^[0-9a-zA-Z -]+$')) {
		return(true);
	} else {
		alert("Please enter in only letters, digits, spaces, and hypens");
		return(false);
	}
}
