var fDesc=new Array(); fDesc[0] = "This is a Visual Studio add-in that indexes some commonly known OO patterns, presents them in an easy-to-search user interface and inserts the code into your working project. It provides you with parameters to further customize the patterns and it works for languages supported by Visual Studio like C#, VB.net, C flavors, F# etc."; 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 = ''; } }