function submitCorp() {
	with (document.forms['dodaj-firme']) {
		var alertMsg = "Wypełnij poniższe pola:\n";

		if ((f_osoba.value == "")) alertMsg += "\nNazwa firmy";
		if ((f_adres.value == "")) alertMsg += "\nAdres";
		if ((f_branza.value == 0)) alertMsg += "\nBranża";
		if ((k_tresc.value == "")) alertMsg += "\nOpis";

		if ((f_email.value == "") || (f_email.value.indexOf ('@') == -1) || (f_email.value.indexOf ('.') == -1)) alertMsg += "\nEmail";
		if ((! regulamin.checked) ) alertMsg += "\nMusisz zaakceptować regulamin.";
	}

	if (alertMsg != "Wypełnij poniższe pola:\n") {
		alert(alertMsg);
		return false;
	}

	
	document.getElementById('dodaj-firme').submit();

}
