var fDesc=new Array();
fDesc[0] = "OldSkoolVerb Plus is an algorithmic reverberation plug-in for professional music production applications. This plug-in implements a kind of “classic” stereo reverb algorithm which is technically simple yet optimal. It produces a very clear spatial image that blends well with the mix. The program offers you a comprehensive set of parameters permitting you to achieve various reverbs ranging from plate reverb to room reverb to hall reverb sound.";
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 = '';
}
}