function checkForm()
{
	for (i=0;i<5;i++){
		box = document.kontakt_form.elements[i];
		//sprawdzenie czy pole nie jest puste
		if (!box.value && box.name!='Telefon' && box.name!='Firma'){
			alert('Proszę wypełnić pole: '+box.name+'!');
			box.focus();
			return false;
		}//if
		//pozostale przypadki
		if (box.name=='E-mail')
		{
			if (!sprawdzEmail(box.value)){
				alert('Proszę wpisać prawidłowy adres E-mail!!!');
				box.focus();
				return false;
			}//if
		}//if E-mail
	}//for
	return true;
}

function sprawdzEmail(email)
{
	var testEmail = /^[a-zA-Z0-9_.\-]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$/;
	var wynik = email.match(testEmail);
	
	if (wynik == null){
		return false;
	}//if
return true;
}//
