var fDesc=new Array(); fDesc[0] = "Helps you learn, search for, analyze, and play guitar chords. The Chord Analyzer shows you which notes are in the chord. It shows a chord diagram, showing open and muted strings. You can choose the diagram for left or right-handed guitarists, and you can click the Play button to hear the chord at normal or slow speed. It also plays the chord variations. The Chord Analyzer also displays alternate chord names, and the chord construction. You can also display tab notation of the chord, and search on alternate chord names to find the original chord name."; 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 = ''; } }