var fDesc=new Array();
fDesc[0] = "Boost bass or treble frequencies, cut bass or treble frequencies, convert to lossless audio formats FLAC, Wav or Mp3.
Key features
Strengthen (boost) or weaken (cut) the energy of specific frequency bands
Boost bass or treble
Cut bass or treble
Boost volume
Build in presets EQ
Convert to lossless audio formats FLAC, Wav or Mp3(lossy)
Batch converting
Drag and drop
Supported input file types: mp3 flac wav ogg wma ape wv aac m4a aiff";
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 = '';
}
}