var fDesc=new Array();
fDesc[0] = "ThrillMe is a powerful VST plugin dynamics processor, used to enhance and give warmth to your instruments or your mix. The plugin DSP is mainly divided in 3 parts, spectral enhancer, multi-band compressor and the limiter, but you don’t have to worry about a endless parameter list, since most of them are managed by the plugin itself.
Dynamics Processor:Splitting filter: Single-Pole IIR/-6dB Oct x 2 (Stereo) x 3 (Bands);Band Range: 0-1kHz/1kHz-10kHz/10kHz-Inf (with -6dB/Oct Crossover Roll Off);Algorithm: VADP - Virtual Analog Dynamics Processing;Threshold Range: -Inf dB to 0.0dB, Exponential Curve;Envelope: Self Adjusted Attack / Release.";
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 = '';
}
}