var fDesc=new Array(); fDesc[0] = "Piano From Above is a program that turns learning the piano into a videogame. You can open any MIDI file and simply play the notes as they fall. In the practice mode you can set the speed of playback, the position of playback, which tracks are shown and which tracks are muted."; 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 = ''; } }