function FuncionEl() {
if (! document.getElementById) {
	alert ('Este script se basa en funcionalidades no soportadas por tu navegador.');
	return false; 
	}
var Colores=document.getElementsByTagName('li'); 
for (var i=0; i != Colores.length; i++) { 
	if (document.getElementById('ListaEl').selectedIndex==1) { 
		Colores[i].style.backgroundColor='transparent'; 
		Colores[i].style.color='#'+Colores[i].id.slice(1); 
		} 
	else { 
		Colores[i].style.backgroundColor='#'+Colores[i].id.slice(1); 
		if (Colores[i].className=='Blanco') Colores[i].style.color='#FFF'; 
		else Colores[i].style.color='#000'; 
		} 
	} 
return false;
}

function FuncionCf() {
if (! document.getElementById) {
	alert ('Este script se basa en funcionalidades no soportadas por tu navegador.');
	return false; 
	}
document.getElementById('Diagrama').style.backgroundColor=document.getElementById('ListaCf').options[document.getElementById('ListaCf').selectedIndex].value;
return false;
}

