var fDesc=new Array(); fDesc[0] = "This addin will ensure that no more than 10 editors are open at a time. You can configure the number of editors that can be open at a time.
Each time you open an editor in Visual Studio the addin will check to see if the maximum number of open editor windows has been exceeded. If it has then the addin will close the least recently used editors until the number open is equal to the maximum. Visual Studio will prompt you to save changes to the editor that is closing if necessary."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }