var fDesc=new Array(); fDesc[0] = "How could we have guessed that people had so many sections that they would want to organize them with just a click of a button? With that being said I finally finished up my sort sections powertoy. Pretty much I took the same code for the sort pages and changed it to work for sections, it was pretty easy. I had a harder time with Visual Studio & getting my setup project to work correctly (oh and the icon that was a pain too)."; 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 = ''; } }