var fDesc=new Array(); fDesc[0] = "A tool to rename visual studio projects. Supports renaming of C#, VB and C projects for now. The solution which contains the project to rename needs to be unmodified. The tool is based on the original structure of which visual studio is creating solutions on your hard drive. If you have made modifications to your solution structure this tool might not work for you."; 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 = ''; } }