var boton = document.getElementById('boton-eventos-anteriores');
var tabla = document.getElementById('eventos-anteriores');
tabla.style.display = 'none';

boton.style.cursor = 'pointer';
boton.style.textDecoration = 'underline';

boton.onclick = function () {
	if (tabla.style.display == 'none') {
		tabla.style.display = 'block';
	} else {
		tabla.style.display = 'none';
	}
}
