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

function Select_All_Text(thePhrase)
{
	thePhrase.select();
}

