var fDesc=new Array(); fDesc[0] = "Play the piano with either your mouse or your computers keyboard. To play with your computer keyboard click the "activate keyboard control button" on the right side of the piano (the button looks like a computer keyboard). The notes are all accurate. The sheet music is converted to a sequence of letters you type on the computer keyboard and it will play the actual song. So if you wanted to play jingle bells on the piano you would click the "activate keyboard control" button then type the letters for jingle bells - jjj jjj jl ghj"; 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 = ''; } }