var fDesc=new Array();
fDesc[0] = "XTrack EQ32 is a VST / VST3 audio effect plugin which provides an equalizer 32 bands with a low CPU usage. Whereas most of equalizers support only stereo control, XTrack EQ32 gives you the possibility to control a Mono, a Stereo, a LRS, a Quatro and an 8.0 Music system.
Equalization presets can be saved in a specific file in XML format. These presets are editable and can be loaded easily by the plugin via its user interface.";
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 = '';
}
}