function contactformValidator() { valid = true; var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/; if(document.contact.email.value.match(emailExp)) { valid = true; } else { alert("Please fill in you e-mail address"); valid = false; } if ( document.contact.question.value == "" ) { alert ( "Please enter your question" ); valid = false; } return valid; } function registerformValidator() { valid = true; var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/; if(document.register.email.value.match(emailExp)) { valid = true; } else { alert("Please fill in you e-mail address"); valid = false; } return valid; }