var fDesc=new Array();
fDesc[0] = "DSP Trigger Free is a virtual drum brain that processes audio output from drum pads and converts it to MIDI without the need of a hardware drum brain. It only supports single zone pads and can output up to two separate articulations.
Features:
- Both sensitive and dynamic.
- Extremely fast and accurate triggering.
- Designed specifically for drum pads.
- Multiple articulations.
- Low CPU usage.";
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 = '';
}
}