﻿function checkForm() {
with (document.kontakt) {
var alertMsg = "Pola muszą być wypełnione:\n";
if (k_email.value == "") alertMsg += "\nemail";
if (k_tresc.value == "") alertMsg += "\nwiadomość";
if (alertMsg != "Pola muszą być wypełnione:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }


function checkFormBig() {
with (document.wycena) {
var alertMsg = "Pola muszą być wypełnione:\n";
if (k_od.value == "") alertMsg += "\nImię i nazwisko";
if (k_firma.value == "") alertMsg += "\nFirma";
if (k_email.value == "") alertMsg += "\nE-mail";
if (alertMsg != "Pola muszą być wypełnione:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }