function enviardados()

{
	
		if(document.dados.form_nome.value=="" || document.dados.form_nome.value.length < 5)
	{
		alert( "Preencha campo NOME corretamente!" );
			document.dados.form_nome.focus();
				return false;
	}
		
	if( document.dados.form_email.value=="" || document.dados.form_email.value.indexOf('@')==-1 || document.dados.form_email.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-MAIL corretamente!" );
			document.dados.form_email.focus();
				return false;
	}
	
			if(document.dados.form_ddd.value=="" || document.dados.form_ddd.value.length < 2)
	{
		alert( "Preencha campo DDD corretamente!" );
			document.dados.form_ddd.focus();
				return false;
	}
	
			if(document.dados.form_telefone.value=="" || document.dados.form_telefone.value.length < 5)
	{
		alert( "Preencha campo TELEFONE corretamente!" );
			document.dados.form_telefone.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;
}
}