var fDesc=new Array(); fDesc[0] = "ReSharper PowerToys are plug-ins developed by both the Community and JetBrains for use with ReSharper. The PowerToys are a series of plug-ins developed by JetBrains and with contributions from the developer community. They provide additional functionality to what is already provided in ReSharper. Some of the current features of ReSharper originated as a PowerToy plug-in originally.

The PowerToys are also a good resource for learning how to create your own plug-in for ReSharper and potentially contribute it back to the community via this project."; 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 = ''; } }