function ValEmail() {
var bledy="1"; 
   if (document.form.name.value == ""){
	  document.getElementById("name").innerHTML="Nie wpisano Imienia / Nicka. Prosimy uzupełnić to pole.";
bledy="0";} else {document.getElementById("name").innerHTML="";}
   if (document.form.email.value == "" || document.form.email.value.indexOf('@',0) == -1 ||
document.form.email.value.indexOf('.',0) == -1 ){
      document.getElementById("email").innerHTML="Nie podano adresu email lub posiada on niepoprawny format.";
	  bledy="0";} else {document.getElementById("email").innerHTML="";}
   if (document.form.subject.value == ""){
      document.getElementById("title").innerHTML="Nie podano tytułu wiadomości. Prosimy uzupełnić to pole.";
	  bledy="0";} else {document.getElementById("title").innerHTML="";}
   if (document.form.message.value == ""){
      document.getElementById("econtent").innerHTML="Nie podano treści. Prosimy wpisać treść wiadomości.";
	  bledy="0";} else {document.getElementById("econtent").innerHTML="";}
if (bledy=="0") {return false;}
else {return true;}}

