var fDesc=new Array(); fDesc[0] = "SSMS Tools Pack is a Microsoft SQL Server Management Studio (SSMS) add-in that increases your productivity and brings additional features. It comes with SQL Editor improvements like Expand Select *, Run Script at Cursor, and Accidental Data Destruction Protector. Execution Plan Analyzer analyzes the execution plan and suggests possible improvements. SQL Snippets keep your favorite statements accessible with a shortcut of your choice."; 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 = ''; } }