function SprawdzFormularz(f) { 

if (f.email.value=='') { 
alert('Nie podałeś adresu e-mail lub telefonu'); 
return false; 
} 

if (f.nazwisko.value=='') { 
alert('Nie padłeś swojego imienia lub nazwiska'); 
return false; 
} 

if (f.temat.value=='') { 
alert('Podaj temat wiadomości.'); 
return false; 
} 

if (f.komentarz.value=='') { 
alert('Podaj treść wiadomości.'); 
return false; 
} 
else { 
return true; 
} 
} 