var fDesc=new Array();
fDesc[0] = "All Blue Cat Audio freeware audio plug-ins gathered together in a single package: this bundle contains a wide range of premium modulation effects.
This is the ideal package to get started with your favorite Digital Audio Workstation.
All plug-ins are available for Mac and PC, in VST, RTAS, AAX, Audio Unit and DirectX plug-in formats, for both 32 and 64-bit architectures.";
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 = '';
}
}