var fDesc=new Array();
fDesc[0] = "mpTrim is a simple and easy to use MP3 editor.
Use it to improve your MP3 collection.
What exactly can mpTrim do for you?
- mpTrim can trim MP3s - removing silent or unwanted parts.
- mpTrim can adjust the volume of MP3s. Volume change can be manual or automatic (volume normalization).
- mpTrim can fade-in/out MP3s (to fix abrupt beginning/ending).
- mpTrim can clean-up MP3s and recover wasted disk space.
- mpTrim keeps the music quality intact, no matter how many times you process an MP3, because it works directly in the MP3 format without having to decode/re-encode. That also makes it very fast.";
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 = '';
}
}