<!--

function openNewWindow(theURL,winName,width,height) { //v2.0
  window.open(theURL,winName,'toolbar=no,directories=no,menubar=no,status=no,scrollbars=yes,resizeable=yes,width='+width+',height='+height+',top='+((screen.height/2)-('+height+'/2))+',left='+((screen.width/2)-('+width+'/2)));
}

function check(form) { 
var note; 
note = "";
if (form.name.value.length < 3) 
 { note = "Proszę wpisać imię i nazwisko. "; 
 form.name.focus()
 alert(note); 
 return false; }

if (form.pytanie.value.length < 3) 
 { note = "Proszę wpisać pytanie. "; 
 form.pytanie.focus()
 alert(note); 
 return false; }

return true; }


//-->