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.fone.value=="" || document.form1.fone.value.length < 14)
	{
		alert( "Preencha campo TELEFONE corretamente! ex:. (11) 1234-5678" );
			document.form1.fone.focus();
				return false;
	}
	
	if(document.form1.cidade.value=="" || document.form1.cidade.value.length < 3)
	{
		alert( "Preencha campo CIDADE corretamente!" );
			document.form1.cidade.focus();
				return false;
	}
	
	if(document.form1.bairro.value=="" || document.form1.bairro.value.length < 3)
	{
		alert( "Preencha campo BAIRRO corretamente!" );
			document.form1.bairro.focus();
				return false;
	}

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