function buscarDiarios()
{

	erros = "";
	
	vazio('strTexto');	
	nao_selecionado('intIdEstado');
	nao_selecionado('strData');
	
	if( ($("#strTexto").val()).length < 4)
	{
		erros += "<p>O campo \"Texto\" deve ter pelo menos 4 letras</p>";	
		
	}
	
	if(erros == "")
	{
		$('form#frmBuscarDiarios').submit();
	}
	else
	{
		$("#feedback").attr("class","backMsg-Erro");
		$("#feedback").html(erros);
		return false;
	}
}
