function enviardados(){
	
	if(document.dados.projeto.value=="" || document.dados.projeto.value.length < 4)
	{
		alert( "Preencha campo PROJETO corretamente!" );
			document.dados.projeto.focus();
				return false;
	}
	
	if(document.dados.produtos.value=="" || document.dados.produtos.value.length < 4)
	{
		alert( "Preencha campo PRODUTOS corretamente!" );
			document.dados.produtos.focus();
				return false;
	}
	
	if(document.dados.referencias.value=="" || document.dados.referencias.value.indexOf('www')==-1 || document.dados.referencias.value.indexOf('.')==-1)
	{
		alert( "Preencha campo REFERÊNCIAS DE SITES corretamente!" );
			document.dados.referencias.focus();
				return false;
	}
	
	if(document.dados.publico.value=="" || document.dados.publico.value.length < 4)
	{
		alert( "Preencha campo PÚBLICO-ALVO corretamente!" );
			document.dados.publico.focus();
				return false;
	}
	
	if(document.dados.imagem.value=="" || document.dados.imagem.value.length < 4)
	{
		alert( "Preencha campo IMAGEM DO SITE corretamente!" );
			document.dados.imagem.focus();
				return false;
	}
	
	if(document.dados.objecoes.value=="" || document.dados.objecoes.value.length < 4)
	{
		alert( "Preencha campo OBJEÇÕES corretamente!" );
			document.dados.objecoes.focus();
				return false;
	}
	
<!--INFORMAÇÕES DO CONTATO-->
	
	if(document.dados.nome.value=="" || document.dados.nome.value.length < 3)
	{
		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;
	}
	
return true;
}

<!--VALIDAÇÃO DE NÚMEROS DE TELEFONE-->

function Numero(e)
{
navegador = /msie/i.test(navigator.userAgent);
if (navegador)
var tecla = event.keyCode;
else
var tecla = e.which;

if(tecla > 47 && tecla < 58) // numeros de 0 a 9
return true;
else
{
if (tecla != 8) // backspace
return false;
else
return true;
}
}
