var fDesc=new Array();
fDesc[0] = "JB Piano sports a beautiful, double-shelved, 49 key piano with rich, authentic piano tones!
With Step recording, you can sequence with notes ranging from 8th to whole notes. With Real-Time recording, JB Piano will record exactly the way you play it. You can change the tempo, and can now interrupt the play with a functional Play/Stop button!
Record a favorite song, an idea, or just random notes. You can view the note sequence and spaces in the display. You can even control the tempo of your song!";
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 = '';
}
}