var fDesc=new Array();
fDesc[0] = "Electronic Piano is a freeware program that allows the user to play musical notes, chords and drums using the computer keyboard.
Main features:
- 128 Musical Instruments (General MIDI Standard).
- Drums47 Drums sounds.
- ChordsPlay 12 types of Chords by pressing a single key.
- GuitarChords can be played simulating the 6 strings of a Guitar.";
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 = '';
}
}