<!-- Begin
function Field_Validator(theForm)
{
	if (theForm.search.value == "")
	{
		alert("Must enter a text value for search.");
		theForm.search.focus();
		return (false);
	}

}

// End -->
