function enviaorcamento(){
	
		if(document.orcamento.f2nome.value=="" || document.orcamento.f2nome.value.length < 5)
	{
		alert( "Preencha campo NOME corretamente!" );
			document.orcamento.f2nome.focus();
				return false;
	}
		
	if( document.orcamento.f2email.value=="" || document.orcamento.f2email.value.indexOf('@')==-1 || document.orcamento.f2email.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-MAIL corretamente!" );
			document.orcamento.f2email.focus();
				return false;
	}
	
		if(document.orcamento.f2empresa.value=="" || document.orcamento.f2empresa.value.length < 2)
	{
		alert( "Preencha campo EMPRESA corretamente!" );
			document.orcamento.f2empresa.focus();
				return false;
	}
	
		if(document.orcamento.f2treinamento.value=="" || document.orcamento.f2treinamento.value.length < 2)
	{
		alert( "Preencha campo TREINAMENTO A SER REALIZADO corretamente!" );
			document.orcamento.f2treinamento.focus();
				return false;
	}
	
			if(document.orcamento.f2ddd.value=="" || document.orcamento.f2ddd.value.length < 2)
	{
		alert( "Preencha campo DDD corretamente!" );
			document.orcamento.f2ddd.focus();
				return false;
	}
	
			if(document.orcamento.f2telefone.value=="" || document.orcamento.f2telefone.value.length < 7)
	{
		alert( "Preencha campo TELEFONE corretamente!" );
			document.orcamento.f2telefone.focus();
				return false;
	}
	
	if(document.orcamento.f2dias.value=="" || document.orcamento.f2dias.value.length < 1)
	{
		alert( "Preencha campo QTE DIAS PARA O TREINAMENTO corretamente!" );
			document.orcamento.f2dias.focus();
				return false;
	}
	
	
return true;
}

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

function Numero02(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;
}
}