var fDesc=new Array();
fDesc[0] = "Controls the input and output of the audio stream.
Main features:
- Free for anyone with a DMGAudio account
- Fully equipped stereo toolkit
- M/S encode and decode
- M/S and L/R Panning
- Stereo Width control
- Channelstrip input controls for Phase and LR Swap
- High-pass filter with adjustable frequency and slope
- Delay both forward and backward in time (on hosts with PDC)
- Windows VST, VST3 and AAX as 32 64bit, RTAS 32bit";
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 = '';
}
}