var fDesc=new Array();
fDesc[0] = "Using the same algorithm as our Flanger plugin, this plug-in adds a unique feature to the original effect: you can smoothly transform it into a stereo flanging effect with a single slider. Push the 'stereo' slider of the user interface and hear the difference: the effect is turning around you head and the sound takes another dimension.";
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 = '';
}
}