// JavaScript Document

function sprawdz(){







if(document.formularz.nazwa.value==""){
	alert("Wypelnij pole: Imie i nazwisko/Nazwa firmy");
	return false;
}


if(document.formularz.adres.value==""){
	alert("Wypelnij pole: Adres");
	return false;
}


if(document.formularz.woj.options[document.formularz.woj.selectedIndex].value=="0"){
	alert("Wybierz województwo");
	return false;		
}

if(document.formularz.telefon.value==""){
	alert("Wypelnij pole: Telefon");
	return false;
}


// email
var adres=document.formularz.email.value
var malpa=adres.indexOf('@');
kropka=adres.lastIndexOf('.');
if (malpa<2 || malpa>kropka){
	alert("Adres e-mile wpisany niepoprawnie");
	return false;
}


document.formularz.submit();
return true;
}

