// JavaScript Document

function cambiaFondo (id, color){
	document.getElementById(id).style.backgroundColor = color; 
}

function reestableceFondo (id, color){
	document.getElementById(id).style.backgroundColor = color; 
}

function muestra_lista(id) {
        document.getElementById(id).style.visibility="visible";
}

function oculta_lista(id) {
        document.getElementById(id).style.visibility="hidden";
}