function popup(url, w, h) {
  sw=screen.width;
  sh=screen.height;
  w+=20;
  h+=25;
  if(w>sw)
    w=sw;
  if(h>sh)
    h=sh;
  l=(sw-w)/2;
  t=(sh-h)/2;
  var okno=window.open(url, "popup", "height="+h+",location=false,scrollbars=yes,width="+w+",top="+t+",left="+l);
}

function sprawdz(f) {
  if (f.nick.value=="") {
    alert("Proszę podać imię lub nick!");
    f.nick.focus();
    return false;
  }
  
  if(f.tresc.value=="") {
    alert("Treść komentarza nie może być pusta!");
    f.tresc.focus();
    return false;
  }
  return true;
}
