function testuj(f1) { 
 
  if (!f1.reply.value.match(/^[0-9a-z_.-]+@([0-9a-z-]+\.)+[a-z]{2,6}$/)) { 
    alert("Podaj poprawny adres e-mail!");  
    f1.reply.focus(); 
    return false; 
  } 
  return true; 
  
} 

function testuj1(f) {
  
  if (f.nazwisko.value.length<1) { alert("Wypełnij pole IMIĘ I NAZWISKO"); return false; }

  return true;
}

function antyspam(t) {
  t.spam.value=2;
  return true;
}



