function walidacja_danych (form){ if (document.getElementById("prezent").value == ""){ alert("wpisz jakiś prezent"); form.prezent.focus(); return false; }else if(document.getElementById("prezent").value.length < 3){ alert("nazwa prezentu musi mieć co najmniej 3 znaki"); form.prezent.focus(); return false; } if (document.getElementById("zlyPrezent").value == ""){ alert("wpisz czego nie porzebujesz"); form.zlyPrezent.focus(); return false; }else if(document.getElementById("zlyPrezent").value.length < 3){ alert("to, czego nie chcesz musi mieć co najmniej 3 znaki"); form.zlyPrezent.focus(); return false; } return true; }