
// free text search
function checkFTSForm(theform)
{
	var check_flag = true;
	if ( theform.anyQuery.value == "" )
		{ alert ("Enter keywords or phrases to locate matching summer program sponsors");
		theform.anyQuery.focus();
		check_flag = false;
	}
	
	return check_flag;		
}
