var fDesc=new Array(); fDesc[0] = "Adds support for the Windows 7 Jump List on Visual Studio 2008. Provides a Recent Solutions section and a couple of tasks to create and open projects. Windows 7 Jump List Support adds a custom category to the Windows 7 Jump List and displays the recent solutions on it. Allows you to pin, unpin, or delete the items from the Jump List. It also adds two tasks: 'Create Project' and 'Open Project'. Not a so powerful feature, but it's there."; 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 = ''; } }