function valida_campos_login()
{
	if (document.logar.txtemail.value.length < 1)
	{
		window.alert("Preencha o e-mail para fazer o login.");
		return false;
	}
	if (document.logar.txtsenha.value.length < 1)
	{
		window.alert("Preencha a senha para fazer o login.");
		return false;
	}
	return true;
}

function valida_campos_pesq_user()
{
	if (document.pesquisa_usuarios.txtusuario.value.length < 3)
	{
		window.alert("Informe pelo menos 3 caracteres para pesquisar o código ou apelido de usuários.");
		return false;
	}
	return true;
}
