function przetwarzaj2(formularz)
{
var poprawne_dane2 = 1;	
////////////////////////

  if (document.getElementById('txtImieNazwisko').value == "") {
	  poprawne_dane2 = 0;
  }
  if (document.getElementById('txtMiejscowosc').value=="") {
  	  poprawne_dane2 = 0;
  }
  if (document.getElementById('txtKodPocztowy').value=="") {
  	  poprawne_dane2 = 0;
  }
  if (document.getElementById('txtUlica').value=="") {
  	  poprawne_dane2 = 0;
  }
  if (document.getElementById('txtTelefon').value=="") {
  	  poprawne_dane2 = 0;
  }
  if (document.getElementById('cbZgoda').checked) {
 	  
  } else {
 	  poprawne_dane2 = 0;	  
  }


//  if (formularz.pytanie1[0].checked || formularz.pytanie1[1].checked || formularz.pytanie1[2].checked || formularz.pytanie1[3].checked) {
//        null;
//  }
//  else {
//        poprawne_dane2 = 2;
//  }

    if (poprawne_dane2==1)
    {	
     return(true);
    }
    else {
	    if (poprawne_dane2==0) {    
	     alert("Wypełnij i zaznacz wszystkie wymagane pola!");
	     return(false);
	    }
             
    }  
  
////////////////////////  
 
}

function przetwarzaj3(formularz)
{
	var poprawne_dane3 = 1;	
	////////////////////////

	  if (document.getElementById('txtImieNazwisko').value == "") {
		  poprawne_dane3 = 0;
	  }
	  if (document.getElementById('txtMiejscowosc').value=="") {
		  poprawne_dane3 = 0;
	  }
	  if (document.getElementById('txtKodPocztowy').value=="") {
		  poprawne_dane3 = 0;
	  }
	  if (document.getElementById('txtUlica').value=="") {
		  poprawne_dane3 = 0;
	  }
	  if (document.getElementById('txtIlosc').value=="") {
		  poprawne_dane3 = 0;
	  }
	  if (document.getElementById('cbZgoda').checked) {
		  
	  } else {
		  poprawne_dane3 = 0;	  
	  }


	//  if (formularz.pytanie1[0].checked || formularz.pytanie1[1].checked || formularz.pytanie1[2].checked || formularz.pytanie1[3].checked) {
	//        null;
	//  }
	//  else {
	//        poprawne_dane2 = 2;
	//  }

		if (poprawne_dane3==1)
		{	
		 return(true);
		}
		else {
			if (poprawne_dane3==0) {    
			 alert("Wypełnij i zaznacz wszystkie wymagane pola!");
			 return(false);
			}
				 
		}  
	  
	////////////////////////  
 
}
