function checkForm()
{
     if(checkspace(document.search.q.value)) {
	document.search.q.focus();
    alert("Please enter search KeyWordŁĄ");
	return false;
  }
 return true;
}

function checkspace(checkstr) {
  var str = '';
  for(i = 0; i < checkstr.length; i++) {
    str = str + ' ';
  }
  return (str == checkstr);
}
