var fDesc=new Array();
fDesc[0] = "Blue Cat's Flanger effect is very versatile: it may sound very harsh and metallic or on the contrary very soft. You can obtain a wide range of sounds with this plug-in. The included factory presets will make you explore the capabilities of this effect.
Very famous during the 70's and 80's, this effect can be used on almost any audio track: from drums to voices or guitars, from a subtle effect to a deep alien-like voice effect, enjoy it!
This effect is a mono effect: it will alter the sound the same way on the left and right channels of your audio signal.";
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 = '';
}
}