var fDesc=new Array();
fDesc[0] = "Touch Drums MIDI is a handy utility designed to enable you to play MIDI sounds on a touch screen. Think of the fun you can have with this application.
Touch Drums also features a mouse mode, so you can play the sounds with the aid of your mouse. It features a wide range of drum sets.";
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 = '';
}
}