var fDesc=new Array();
fDesc[0] = "MP3 Doctor Pro is an tool designed for music editing.
Features:
-Normalize (Improve the volume level of any mp3 file at its best)
-Equalize (Let you equalize any mp3 file so when reproduced in a mobile device, CD, etc. it sound as best as possible)
-Tempo (Let you change the tempo - BPM Beats per minute of any mp3 file without changing the pitch)
-Pitch (Let you modify the pitch of any mp3 file without changing the tempo)";
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 = '';
}
}