/////////////////////////////////////////////////////////////
// Función para cambiar el color del fondo y el borde.
function ColorFondo(identificador, color, borde) {
	document.getElementById(identificador).style.backgroundColor = color;
	document.getElementById(identificador).style.borderBottom = borde;
}
/////////////////////////////////////////////////////////////