var fDesc=new Array(); fDesc[0] = "ShellTools is a collection of Windows shell extensions. It adds some new useful commands like "Resize image", "Install/Uninstall/Load/Unload font," "Copy size," etc. to right-click menus in Windows Explorer. The commands can be customized as you like. Resize image functionality uses ImageMagick graphics library that must be also installed."; 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 = ''; } }