function checkEmail(txt){ var b=/^[^@\s]+@[^@\.\s]+(\.[^@\.\s]+)+$/ return b.test(txt) } function checkContactForm(){ if('' == document.getElementById('name-contact').value){ alert('das Namensfeld darf nicht leer sein.'); document.getElementById('name').focus(); return false; } if(!checkEmail(document.getElementById('email-contact').value)){ alert('falsches Email-Format'); document.getElementById('email').focus(); return false; } if('' == document.getElementById('comment-contact').value){ alert('Das Anmerkungsfeld darf nicht leer bleiben!'); document.getElementById('comment').focus(); return false; } if('' == document.getElementById('verification').value){ alert('Bitte füllen Sie das Kontrollfeld aus!'); document.getElementById('verification').focus(); return false; } }