function check_zamowienie(){

	if (document.zamowienie["imie"].value.length <= 0){
		window.alert("Nie podałeś imienia!");
		document.zamowienie["imie"].select();
		return false;
	}
	if (document.zamowienie["nazwisko"].value.length <= 0){
		window.alert("Nie podałeś nazwiska!");
		document.zamowienie["nazwisko"].select();
		return false;
	}
	if (document.zamowienie["kod"].value.length <= 0){
		window.alert("Nie podałeś kodu pocztowego!");
		document.zamowienie["kod"].select();
		return false;
	}

	if (document.zamowienie["ulica"].value.length <= 0){
		window.alert("Nie podałeś ulicy!");
		document.zamowienie["ulica"].select();
		return false;
	}


	if (document.zamowienie["nr_domu"].value.length <= 0){
		window.alert("Nie podałeś numeru domu!");
		document.zamowienie["nr_domu"].select();
		return false;
	}


	if (document.zamowienie["miasto"].value.length <= 0){
		window.alert("Nie podałeś miasta!");
		document.zamowienie["miasto"].select();
		return false;
	}
	
	if (document.zamowienie["telefon"].value.length <= 0){
		window.alert("Nie podałeś telefonu!");
		document.zamowienie["telefon"].select();
		return false;
	}
	
	if (document.zamowienie["imie1"].value.length > 0){
		if (!document.zamowienie["dane"].checked){
		  window.alert("Nie zaznaczyłeś pola z potwierdzeniem danych wysyłkowych!");
		  document.zamowienie["dane"].select();
		  return false;
    }	
	 
  	if (document.zamowienie["nazwisko1"].value.length <= 0){
  		window.alert("Nie podałeś nazwiska!");
  		document.zamowienie["nazwisko"].select();
  		return false;
  	}
  	if (document.zamowienie["kod1"].value.length <= 0){
  		window.alert("Nie podałeś kodu pocztowego!");
  		document.zamowienie["kod"].select();
  		return false;
  	}
  
  	if (document.zamowienie["ulica1"].value.length <= 0){
  		window.alert("Nie podałeś ulicy!");
  		document.zamowienie["ulica"].select();
  		return false;
  	}
  
  
  	if (document.zamowienie["nr_domu1"].value.length <= 0){
  		window.alert("Nie podałeś numeru domu!");
  		document.zamowienie["nr_domu"].select();
  		return false;
  	}
  
  
  	if (document.zamowienie["miasto1"].value.length <= 0){
  		window.alert("Nie podałeś miasta!");
  		document.zamowienie["miasto"].select();
  		return false;
  	}
	}
	
	return true;
}



function check_kontakt(){
	if (document.kontakt["email"].value.length <= 0){
		window.alert("Nie podałeś adresu email!");
		document.kontakt["email"].select();
		return false;
	}


	if (document.kontakt["message"].value.length <= 0){
		window.alert("Nie podałeś treści wiadomości!");
		document.kontakt["message"].select();
		return false;
	}

	
	return true;
}

