function validateForm(AForm)
{
    if (!AForm.firma.value) {
        alert("Podaj nazwe firmy");
        return false;
    } 

	
    if (!AForm.adres.value) {
        alert("Podaj adres firmy.");
        return false;
    } 

	
    if (!AForm.imie.value) {
        alert("Podaj imie i nazwisko.");
        return false;
    } 
	
	reg = /^[0-9_]{1,30}$/;
    wyn = AForm.telefon.value.match(reg);
    if (wyn == null) {
        alert("Podaj poprawny numer telefonu.");
        return false;
    }
	
	if (!(AForm.sposob_1[0].checked || AForm.sposob_1[1].checked )) {
        alert("Wybierz sposob dostawy.");
        return false;
    };
	
	reg = /^[a-zA-Z0-9_.]{1,30}@[a-zA-Z0-9_.]+(\.[a-zA-Z0-9]+)+$/;
    wyn = AForm.email.value.match(reg);
    if (wyn == null) {
        alert("Podaj poprawny adres email.");
        return false;
    }
	
	if (!AForm.zam.value) {
        alert("Wpisz produkty, ktore chcesz zamowic.");
        return false;
     } 
    

	
	
	

	return true;

}

