var fDesc=new Array();
fDesc[0] = "FabFilter Pro-L is a professional, feature-packed brickwall limiter, suitable for transparent mastering as well as single instrument limiting. It features various different limiting algorithms, a highly intuitive interface, oversampling, dithering and accurate metering: everything you need in a limiter.
Main features:
- Great transparent sound combined with maximum loudness.
- Four different limiting algorithms, all with their own character .
- Low CPU usage.
- Highly accurate output and gain reduction metering.
- Adjustable meter scale, including K-System support.
- Unique, highly informative real-time level display.
- Optional Compact interface layout.
- Adjustable look-ahead, attack and release settings.
- Separate channel linking for both the transient and release stages.
- Up to four times linear-phase oversampling.";
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 = '';
}
}