function testuj(f) { 

if (!f.reply.value.match(/^[0-9a-z_.-]+@([0-9a-z-]+\.)+[a-z]{2,6}$/) & (f.telefon.value.length<1)) { 
alert("Podaj poprawny kontakt!");  
f.reply.focus(); 
return false; 
} 
return true; 
} 


function testuj1(f) {

  if (f.tresc.value.length<1) { alert("Wypełnij pole TREŚĆ"); return false; }	
  return true;

}

function antyspam(t) {
  t.spam.value=2;
  return true;
}




