var fDesc=new Array();
fDesc[0] = "Dimension LE provides several types of synthesis capabilities including multi-sample rendering, wavetable synthesis, waveguide synthesis, and, REX playback and manipulation.
Main features:
- Each Program can use up to 4 elements or SFZs for layers or splits
- Integrated Program Browser allows easy access to factory and user programs
- MIDI Learn
- Complete automation of all parameters
- Ability to load and trigger REX files in each Element
- Built in filter, overdrive, and limiter
Dimension LE supports DXi/VSTi/RTAS/AU formats.";
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 = '';
}
}