function dodaj(url, tytul) {
  if (window.sidebar) { window.sidebar.addPanel(tytul, url, ""); } // FF 
  else if (window.external) { window.external.AddFavorite(url, tytul); } // IE
  else if (window.opera && window.print) {
     var a = document.createElement('a');
     a.setAttribute('href', url);
     a.setAttribute('title', tytul);
     a.setAttribute('rel','sidebar');
     a.click();
  }
}



function sprawdz(t) {

  if (t.email.value=='') {
    alert("Podaj poprawny telefon lub adres e-mail!");
    t.email.focus();
    return false;
  }
  return true;
}



function testuj(f) {  
	if (f.searchText.value.length<3) { alert("Szukana fraza musi mieć co najmniej 3 znaki"); return false; }
	return true;
}



    

$("#selectproducenci").change(function(){
	
	alert('ok');
	this.submit();

});