var fDesc=new Array();
fDesc[0] = "It's a package containing all the ToneBoosters plug-ins. Installing and using them requires a VST compatible host.
This package contains plug-ins like ToneBoosters Reverb (a reverb plugin), ToneBoosters Barricade (Mastering-grade compression and true-peak limiting plug-in with analog saturation options) or MorphIt (headphone customization).";
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 = '';
}
}