function display_lista(id) {
	if (document.all) {
		document.getElementById(id).style.backgroundColor ="993333";
		document.getElementById(id+"_lista").style.display="block";
	}
}

function hide_lista(id) {
	if (document.all) {
		document.getElementById(id).style.backgroundColor ="";
		document.getElementById(id+"_lista").style.display="none";
	}
}

