var fDesc=new Array(); fDesc[0] = "Quick Tool is a simple menu system. You have the possibility to create your own menus for quick access to your favorite tools. To just load a tool there is a tray menu, to open files with your favorite tools there is a shell menu. It is a nice and very easy to use program."; 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 = ''; } }