// JavaScript Document

<!-- Entrar -->
function ShowEntrar(type) {
	switch (type) {
		case "showLogin":
			document.getElementById('showLogin').className = 'boxAlphaEntrar';
			document.getElementById('showLogin').style.display = 'block';
			document.getElementById('login').style.display = 'none';
		break;     
	}
}