var fDesc=new Array();
fDesc[0] = "Blue Cat's Freeware Pack includes six audio plugins in a single package. Blue Cat's Chorus gives a simulation of several voices. The Flanger plugin gives an alien-like audio effect. The FreqAnalyst is a spectrum analyzer. The Gain Suite plugin lets you control the volume of audio tracks. Phaser gives a vintage analog phasing effect. The Triple EQ is a filter with WYSIWYG customizable waveshape.
AAX plugins can be installed in Avid Protools audio/video editing program.";
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 = '';
}
}