var fDesc=new Array();
fDesc[0] = "The FabFilter Total Bundle contains the latest versions of all FabFilter plug-ins.
- FabFilter Pro-Q
Allround EQ plug-in for mixing and mastering purposes, with up to 24 bands and a gorgeous interface for easy and precise editing.
- FabFilter Pro-C
Professional compressor plug-in with versatile routing and side chain options, high quality sound and an innovative interface.
- FabFilter Timeless 2
Creative stereo tape delay plug-in with time stretching, the best possible filters, and an innovative drag-and-drop interface.
- FabFilter Twin 2
Powerful synthesizer plug-in with the highest possible sound quality and an ultra-flexible drag-and-drop modulation system.
- FabFilter Volcano 2
Versatile filter effect plug-in with state-of-the-art filter technology and endless modulation possibilities.
- FabFilter Simplon
Basic and easy to use filter plug-in with two high-quality multi-mode filters and an interactive filter display.
- FabFilter One
Basic synthesizer plug-in with just one oscillator, but with perfectly fine-tuned controls and the best possible sound and filter quality.
- FabFilter Micro
Ultimate lightweight filter plug-in, making the classic FabFilter sound affordable for everyone.";
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 = '';
}
}