var fDesc=new Array(); fDesc[0] = "SongBook manages your song collections with lyrics and chords. At first program start, you should select the directory where your songs will be stored. All the songs are structured in categories to help you organize them easily. SongBook understands the widespread chordpro format where chords are written in square brackets within the lyrics. This program comes with comprehensive, extensible chord libraries for guitar, ukulele, mandolin, and other instruments."; 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 = ''; } }