var fDesc=new Array(); fDesc[0] = "The Electric Bass Companion is a tool to help bass players learn the notes and scale patterns on the fingerboard. As a beginner you can use this program to learn major and minor scales on your 4-string bass. As an experienced player, this program will help you learn any custom scale pattern, in custom tunings, in any key, using 4,5,6,7, or an 8 string bass. This simple musician’s tool will be your companion as you learn to play the electric bass."; 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 = ''; } }