var fDesc=new Array();
fDesc[0] = "Frei:raum, the smart EQ plug-in for audio editing balances spaciousness and unlocks creative possibilities in the post-production of music and language.
Based on a unique ability for automatic learning, the smart:engineTM recognizes disturbing resonances or notches and automatically calculates individual filters to optimize single tracks or the mix as a whole. In classical mixing as well as in broadcasting, the smart:engineTM delivers fast high-quality results.";
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 = '';
}
}