function sprawdz_search(form) {

if (form.text.value == "") {
  alert("Wpisz tekst wyszukiwania / Please write search text")
  form.text.focus()
  return false
}


form.submit()

}

var pointer

function flash_search(form) {

pointer = form.text

flash1()
setTimeout("flash2()",250)
setTimeout("flash1()",500)
setTimeout("flash2()",750)
pointer.focus();
}

function flash2()
{
pointer.style.background = "#234D8F"
}

function flash1()
{
pointer.style.background = "#FDFCFF"
}

