function cargar_estilo(nombre_estilo)
{
  var enlace_estilo=document.createElement('link');
  enlace_estilo.type='text/css';
  enlace_estilo.rel='stylesheet';
  enlace_estilo.href=nombre_estilo;
  document.getElementsByTagName('head')[0].appendChild(enlace_estilo);
}

