<!--
  
function openNewWindow(theURL,winName) { 
  window.open(theURL,winName,'toolbar=no,directories=no,menubar=no,status=no,scrollbars=yes,resizeable=yes,width=600,height=660,top='+((screen.height/2)-(590/2))+',left='+((screen.width/2)-(600/2)));
}


////////////////


function check_form(form) { 

var note; 
note = "Proszę uzupełnić dane. "; 


if (form.name.value.length < 3) 
 { 
 form.name.focus()
 alert(note); 
 return false; }


if (form.tel.value.length < 6) 
 { 
 form.tel.focus()
 alert(note); 
 return false; }



return true; }


//-->
