function cambioCSS(hoja){
//  hoja = hoja - 1;
  if(document.styleSheets){
    var c = document.styleSheets.length;

    for(var i=2;i<c;i++){
      if(i!=hoja){
        document.styleSheets[i].disabled=true;
      }else{
        document.styleSheets[i].disabled=false;
      }
    }
  }
}
