function checkSearch(form) {
	if (form.str.value.length<3) {
		alert('Podaj minimum 3 znaki!');
		form.str.focus();
		return false;
	}
}