function ACTIVAR_ESTILO_ALTERNATIVO(NombreEstilo) 
	{
	   var C, Enlace;
	   for (C=0; (Enlace = document.getElementsByTagName("link")[C]); C++) 
	   {
		 if(Enlace.getAttribute("rel").indexOf("style") != -1 && Enlace.getAttribute("title")) 
			{
			   Enlace.disabled = true;
			   if (Enlace.getAttribute("title") == NombreEstilo) Enlace.disabled = false;
			}
	   }
	   
	}

