function getValidS()
{
	var oSearch = document.getElementById('s');
	if (oSearch.value.length < 3)
	{
		alert('Введите слово более 3 символов.');
		return false;
	}
	return true;
}