//******************************************************//
function confere_email(form1) {
var valido = form1.value.match(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/);
if (valido) {
   return true;
} else {
   return false;
   }
}
//******************************************************//
function confere(form1) {
if (form1.value=="") {
	return false;
}
else {
return true;
}
}
//******************************************************//
function send(){  
			
			if (confere(document.form1.name)) {
				if (confere_email(document.form1.email)) {	
					if (confere(document.form1.comments)) { 
							document.form1.submit()
							document.form1.reset()
					}
					else {
							alert('Please write the Comments!')
							document.form1.comments.focus()
					}
				}
				else {
					alert('Please write a valid E-mail!')
					document.form1.email.focus()
				}
			}
			else {
				alert('Please write your Name!')
				document.form1.nome.focus()
			}		  	 
}	
//******************************************************//
