var fDesc=new Array(); fDesc[0] = "A musical chord transposition app for Win 95/98 which resides in your system tray. Need to transpose a song? Copy the lyrics and chords of a song from whatever Windows program you use, click the icon, and up pops the Tray Transpose Tool, with the clipboard contents already shown. It'll even guess the root chord 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 = ''; } }