function checkZapytanie() {
with (document.zadaj) {
var alertMsg = "Pola muszą być wypełnione:\n";
if (k_imie.value == "") alertMsg += "\nImię";
if (k_nazwisko.value == "") alertMsg += "\nNazwisko";
if (k_email.value == "") alertMsg += "\nemail";
if (k_tresc.value == "") alertMsg += "\nTreść";

if (alertMsg != "Pola muszą być wypełnione:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }



function checkForm() {
with (document.kontakt) {
var alertMsg = "Pola muszą być wypełnione:\n";

if (k_email.value == "") alertMsg += "\nemail";
if (k_tresc.value == "") alertMsg += "\nTreść";

if (alertMsg != "Pola muszą być wypełnione:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
