var fDesc=new Array(); fDesc[0] = "This application will allow you to automatically transpose chords from the original key into a new key with a click of the mouse. You can either paste a song from the clipboard into the RichText editor, or open a RichText file (.rtf) from your hard drive. Songs must be in the two-line format in order to work (chords on top, words on bottom)."; 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 = ''; } }