// JavaScript Document

function enviardados(){
if(document.dados.nomeContato.value=="" || document.dados.nomeContato.value.length < 3)
	{
		alert( "Preencha campo Nome corretamente!" );
			document.dados.nomeContato.focus();
			return false;
	}

if( document.dados.emailContato.value=="" || document.dados.emailContato.value.indexOf('@')==-1 || document.dados.emailContato.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-MAIL corretamente!" );
		document.dados.emailContato.focus();
				return false;
	}
	

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

return true;
}
