var fDesc=new Array();
fDesc[0] = "The MorphVOX Effects Rack is a plug-in for MorphVOX Pro that provides a way for you to use VST effects modules with MorphVOX Pro.
MorphVOX Effects Rack has an intuitive interface so you can easily create and navigate a sophisticated audio pipeline with multiple VST modules.
Add the Effects Rack plug-in to MorphVOX Pro and expand your voice modification possibilities.
The MorphVOX Effects Rack also provides you with a highly-configurable workspace for arranging VST effects and integrating them into MorphVOX Pro.";
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 = '';
}
}