function przetwarzaj(formularz)
{

var poprawne_dane2 = 1;	

  if (document.getElementById("inputKalendarz").value=="") {
	  poprawne_dane2 = 0;
  }
  if (document.getElementById("selectGodzinaWizyty").value=="") {
  	  poprawne_dane2 = 0;
  }
  if (document.getElementById("inputImieNazwisko").value=="") {
  	  poprawne_dane2 = 0;
  }
  if (document.getElementById("inputTelefon").value=="") {
  	  poprawne_dane2 = 0;
  }
  if (document.getElementById("inputEmail").value=="") {
  	  poprawne_dane2 = 0;
  }

    if (poprawne_dane2==1) {	
	 return(true);
    }
    else {		
	    if (poprawne_dane2==0) {    
	     alert("Wypełnij wszystkie pola formularza.");
		 return(false);
	    }             
    }  
}
