function sprawdz_userpost() {

var tytul=document.userpost.temat_postu.value;

if(navigator.appName.indexOf("Microsoft Internet Explorer") != -1)
		var tresc_listu=tresc.document.body.innerHTML;
else 
	 	var tresc_listu=document.userpost.tresc.value;

var imie=document.userpost.imie.value;


if(tytul == ""){
alert("Proszę wpisać temat listu ");
document.userpost.temat_postu.focus();
return 0
}

else if(tresc_listu == ""){
alert("Proszę wpisać treść listu ");
if(navigator.appName.indexOf("Microsoft Internet Explorer") == -1) document.userpost.tresc.focus();
return 0
}

else if(imie == ""){
alert("Proszę wpisać swój pseudonim ");
document.userpost.imie.focus();
return 0
}

document.userpost.submit()
}
