var fDesc=new Array(); fDesc[0] = "Jazz and rock musicians often play from chord and lyric sheets instead of sheet music. I wrote this simple Windows program to replace the printed chord sheets I used to use during practice, and decided to make it available for anyone else who may find it useful. Digital Fake Book displays chords and lyrics in plain text format on 1 or 2 sheets. It is not able to display standard music notation."; 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 = ''; } }