function abre(id) {
	status = id.style.display;
	document.getElementById('sumario').style.display = 'none';
	if (status == '') {
		id.style.display = 'none';
	} else {
		id.style.display = '';
	}
}
