var fDesc=new Array();
fDesc[0] = "Based on Blue Cat's Chorus plugin technology, Blue Cat's Stereo Chorus has the same versatility and crystal-clear sounding capabilities as its little brother, plus a subtle to very deep stereo effect feature: just play with the 'stereo' control and get this famous widening stereo chorus effect. You will feel like the sound is turning around your head.
- Single voice stereo chorus effect.
- Ability to manage the stereo effect continuously.
- Smooth Update: silent, zipper-free parameters update.";
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 = '';
}
}