function verify() {
var themessage = "Prosimy o uzupełnienie wymaganego pola: ";
if (document.form.nadawca.value=="")
	 {themessage = themessage + "Imię i nazwisko ";}

if (document.form.email.value=="" && document.form.fax.value=="" && document.form.adres_ulica.value=="")
	 {themessage = themessage + "e-mail, faks lub adres korespondencyjny";}

//if (document.form.wyslac.length==0)
//	 {themessage = themessage + "Inwestycja";}

//if (document.form.inwestycja[].value=="")
//	 {themessage = themessage + "Jaką inwestycją są Państwo zainteresowani?";}
	 
//if (document.form.wyslac.value=="poczta" && document.form.adres_ulica.value=="")
//{themessage = themessage + "adres korespondencyjny";}

//if (document.form.wyslac.value=="email")
//{themessage = themessage + "adres e-mail na który wysłać dokumenty";}

//if (document.form.wyslac.value=="faks" && document.form.fax.value=="")
//{themessage = themessage + "numer faksu na który wysłać dokumenty";}

if (themessage == "Prosimy o uzupełnienie wymaganego pola: ") {
document.form.submit();
}
else {
alert(themessage);
return false;
   }
}

function checkEmail(from) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.form.email.value)){
return (true)
}
alert("Niepoprawny adres e-mail, prosimy o poprawienie.")
return (false)
}
