// JavaScript Document

function checa_emali() {
if (document.form.nome.value.length < 3) {
	alert('preencha o campo Nome corretamente.');
	return false;
	}
	
if (document.form.email.value.length < 5){
	alert('preencha o campo E-mail corretamente.');
	return false; 
	}
	
if (document.form.ddd.value.length < 2){
				  alert('preencha os campos DDD(dois dígitos) e Telefone(oito dígitos) corretamente.');
				  return false;
				  }
				  
if (document.form.tel.value.length < 8){
				  alert('preencha o campo Telefone(oito dígitos) corretamente.');
				  return false; 
				  }
if (document.form.mensagem.value.length < 3){
				  alert('preencha o campo E-mail corretamente');
				  return false; 
				  } else { 
				  return true;
				  }
}
