function enviacontato(){
	
		if(document.contato.f1nome.value=="" || document.contato.f1nome.value.length < 5)
	{
		alert( "Preencha campo NOME corretamente!" );
			document.contato.f1nome.focus();
				return false;
	}
		
	if( document.contato.f1email.value=="" || document.contato.f1email.value.indexOf('@')==-1 || document.contato.f1email.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-MAIL corretamente!" );
			document.contato.f1email.focus();
				return false;
	}
	
		if(document.contato.f1mensagem.value=="" || document.contato.f1mensagem.value.length < 20)
	{
		alert( "Escreva uma mensagem com pelo menos 20 caracteres" );
			document.contato.f1mensagem.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;
}
}