function enviardados(){

	if(document.form1.nome.value=="" || document.form1.nome.value.length < 4)
		{
			alert( "Preencha campo NOME corretamente!" );
			document.form1.nome.focus();
			return false;
		}
	if( document.form1.email.value=="" || document.form1.email.value.indexOf('@')==-1 || document.form1.email.value.indexOf('.')==-1)
		{
			alert( "Preencha campo E-MAIL corretamente!" );
			document.form1.email.focus();
			return false;
		}
	if( document.form1.confirmaremail.value=="" || document.form1.confirmaremail.value.indexOf('@')==-1 || document.form1.confirmaremail.value.indexOf('.')==-1)
		{
			alert( "Preencha campo CONFIRMAR E-MAIL corretamente!" );
			document.form1.confirmaremail.focus();
			return false;
		}
	if(document.form1.mensagem.value=="")
		{
			alert( "Preencha campo MENSAGEM corretamente!" );
			document.form1.mensagem.focus();
			return false;
		}
	if( document.form1.email.value != document.form1.confirmaremail.value )
		{
			alert( "Os emails nao conferem!" );
			document.form1.confirmaremail.focus();
			return false;
		}
		
		alert("Mensagem enviada com sucesso - Obrigado pelo contato!");
    	document.form1.submit(); 
}

