function enviardados(){
	
	if(document.pesquisa.txtValorp.value=="" || document.pesquisa.txtValorp.value.length < 3)
	{
		alert( "Preencha campo PESQUISA com mais de 3 caracteres!" );
			document.pesquisa.txtValorp.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;
}
}