var fDesc=new Array(); fDesc[0] = "Some songs have hard chords but often it is possible to transpose them into easier chords. This program will help you to find the easiest transposition for you. All you have to do is indicating the program which chords are easy for you and which ones are hard. The program will do the rest of the job."; 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 = ''; } }