
function searchValidate(str) {
	components = str.split(" ");
	for (i=0; i<components.length; ++i)
	{
		if ( (components[i].length < 4) && (components[i].length > 0) )
		{
			return false;
		}
	}
	return true;
}
