var fDesc=new Array(); fDesc[0] = "Visual Studio Booster is a tabbed windows management tool (add-in) for Microsoft Visual C++ 6.0. It can help you to switch between opened document windows quickly by the easy clicking tabs. It is integrated with Visual C++ IDE so tightly that you can hardly recognize it is a 3rd party software. It adds a horizontal tab-bar to the bottom side of the Visual C++ IDE's MDI client area and a vertical tab-bar to the left side. The bottom side tab-bar can help you to switch between the opened document windows quickly. The left side tab-bar can help you to manage the opened document windows by groups. And you can discover many other useful functions that can increase your programming efficiency under Visual C++ IDE from the context menu of the tabs."; 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 = ''; } }