function form_sprawdz(f) {
	with(f) {
		if(!nadawca.value.length) {
			alert('Wypełnij pole "Nadawca"!')
			nadawca.focus()
			return false
		}

		if(!adres.value.length) {
			alert('Wypełnij pole "Adres e-mail"!')
			adres.focus()
			return false
		}

		if(!temat.value.length) {
			alert('Wypełnij pole "Temat"!')
			temat.focus()
			return false
		}

		if(!tresc.value.length) {
			alert('Wypełnij pole "Treść"!')
			tresc.focus()
			return false
		}
	}
}

function form_ok() {	alert('Wiadomość wysłana, dziękujemy!') }
function form_error() { alert('Nie udało się wysłać wiadomości!\nProsimy o kontakt pod adresem: stowarzyszenie@kolejowepodlasie.pl') }
