var fDesc=new Array();
fDesc[0] = "The gEQ12 soft, is a 12 band stereo/MS graphic equalizer with accurate spectrum analyzer and minimum/linear phase modes.
Today's mixing and mastering processes require a full featured and flexible, but easy to use
equalizer which can accurately shape the tone of a track , bus or master track. gEQ12 provides
all necessary tools in one package paired with some unique features.";
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 = '';
}
}