var fDesc=new Array();
fDesc[0] = "Powerful DSP algorithms realize a multiband compressor-expander-limiter.
The multiband processor ouput is further processed by a two band limiter. The preemphasis generator makes your signal ready to be connected to a stereo coder and broadcasted in the FM band.
It is also a perfect choice for DAB diffusion, internet streaming, or simply listening to the music.
Features:
- Multiband Compressor-Expander-Limiter
- Center frequencies B1=170Hz, B2=1000Hz, B3=3200,B4=7200,B5=12000
- Gated AGC
- Stereo expander
- Dual band output limiter / compressor / clipper
- Bass Equalizer
- Built in preemphasis 50-75uS generator and lowpass antialias filter";
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 = '';
}
}