var fDesc=new Array(); fDesc[0] = "nPiano application has been created with the aim to enable everyone to play the keyboards successfully in fun and easy way. In order to learn to play your favourite tunes on the keyboard with this program, you don’t need any musical knowledge, you need just basic computing knowledge and good will.

Features:
- Automatic split of notes for LEFT and RIGHT hand.
- Note Names Above Keys.
- Pull key and tempo from MIDI file.
- Play speed from 1% up to 200%.
- 2D and 3D view.
- Sustain pedal view.
- Unlimited number of loop points for practicing long tunes, part by part."; 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 = ''; } }