var fDesc=new Array();
fDesc[0] = "The DX Reverb is a processing module delivering a rich and distinctive palette of reverb effects. From inverse and gated reverberation to warm plate reverbs and wide halls.
This DirectX audio plug-in embodies state of the art algorithms developed with maximum care and no compromise. The interface allows a simple and effective editing of the wide number of control parameters available for each algorithm.
The DX Reverb plug-in is Microsoft DirectX compatible, enabling you to use it with any digital audio software that supports this standard.
The DX Reverb includes 11 DIFFERENT REVERB ALGORITHMS : 2 small room, 2 medium rooms, 2 large rooms/halls, 2 plate reverbs, 2 gate reverbs and 1 inverse reverb.
The DX Reverb features full MIDI implementation providing two different functions:";
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 = '';
}
}