var fDesc=new Array(); fDesc[0] = "The software TGTools is a set of plug-ins for Finale. They extend Finales capabilities by more than sixty new commands. These commands are available from a new menu that is installed in Finales menu bar. Most plug-ins do a specific job on a selected region within the document. Before selecting the commands, select a region with the mass mover tool. If no region is selected, they can automatically work on the whole score if the user so choses."; 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 = ''; } }