var fDesc=new Array(); fDesc[0] = "Visual Assist X is a plugin for Microsoft Visual Studio developed by Whole Tomato. It primarily enhances IntelliSense and syntax highlighting. It also enhances code suggestions, provides refactoring options and spell checking support for comments. It can also detect basic syntax mistakes, such as use of undeclared variables. Unlike ReSharper, Visual Assist X also supports C++."; 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 = ''; } }