// JavaScript Document
function enviardados(){
	
	if(document.dados.nome.value=="" || document.dados.nome.value.length < 5)
	{
		alert( "Preencha campo NOME corretamente!" );
			document.dados.nome.focus();
				return false;
	}
	
		
	if( document.dados.email.value=="" || document.dados.email.value.indexOf('@')==-1 || document.dados.email.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-MAIL corretamente!" );
			document.dados.email.focus();
				return false;
	}
	
	if(document.dados.tel.value=="" || document.dados.tel.value.length < 10)
	{
		alert( "Preencha campo TEL corretamente Coloque o DDD!" );
			document.dados.tel.focus();
				return false;
	}
	

	if (document.dados.msg.value=="")
	{
		alert( "Preencha o campo MENSAGEM!" );
			document.dados.msg.focus();
				return false;
	}	
	
	if (document.dados.msg.value.length < 20 )
	{
		alert( "É necessario preencher o campo MENSAGEM com mais de 50 caracteres!" );
			document.dados.msg.focus();
				return false;
	}
	
return true;
}

function matricula(){
	

		
		if(document.form.fnome.value=="" || document.form.fnome.value.length < 5){
				alert( "Preencha campo NOME FISICO corretamente!" );
				document.form.fnome.focus();
				return false;
		}
		
	

		if(document.dados.jfantasia.value=="" || document.dados.jfantasia.value.length < 5){
				alert( "Preencha campo NOME JURIDICO corretamente!" );
				document.dados.jfantasia.focus();
				return false;
		}
	
	

		
return true;
}