





function checkBigForm() {

with (document.kontakt) {

var alertMsg = "Pola muszą być wypełnione:/ Required fields:";

if (k_miejscowos.value == "") alertMsg += "\nMiejscowość / City";

if (k_email.value == "") alertMsg += "\nEmail / Email";

if (k_tresc.value == "") alertMsg += "\nTreść / Question";



if (alertMsg != "Pola muszą być wypełnione:/ Required fields:") {

alert(alertMsg);

return false;

} else {

return true;

} } }
