function validaCampos() {
	if (document.getElementById('LogUsu').value == "") {
		document.getElementById('LogUsu').focus();
		document.getElementById('LogUsu').style.backgroundColor = "#66BC92";
		return false;
	}

	if (document.getElementById('LogSenha').value == "") {
		document.getElementById('LogSenha').focus();
		document.getElementById('LogSenha').style.backgroundColor = "#66BC92";
		return false;
	}

	return true;
}
