function cambiaCSS(hojaestilo) 
{
	if (navigator.appName.indexOf("Netscape") != -1 )
  	{
		 var enlaces = document.getElementById("hojaCSS");
	
		  if((enlaces.getAttribute("rel")=="stylesheet"))
			{
			   enlaces.setAttribute("href",hojaestilo);
			}
		 
	}
}

