function Okno( html, nameWindow, width, height ){
	    okno = window.open( html, 'okienko', "toolbar=no, location=no, directories=no, status=no, resizable=no, menubar=no, scrollbars=no, width="+width+", height="+height); okno.focus();
 }
 
function kontrola()
{
  if (document.Formularz.imie_i_nazwisko.value == "")
  {
    alert("Geben Sie bitte Ihren Namen und Vorname ein!");
    return false;
  };
  
    
 if (document.Formularz.telefon.value == "")
  {
    alert("Geben Sie bitte die Telefonnummer mit Vorwahl ein!");
        return false;
  };
  
  

  if (document.Formularz.tekst_wiadomosci.value == "")
  {
    alert("Geben Sie die Nachricht in das Textfeld ein!");
        return false;
  };

 
  

}
