var fDesc=new Array();
fDesc[0] = "Colorful Music Editor is a very easy to used music edit tools, you can join, split, and add any audio effect to you music file to create a new music. What's Features
- Join parts of any audio file into one audio file
- Save part of audio file into new audio file.
- Copy, cut, paste audio file.
- Add audio effect to output file such as zoom in , zoom out and so on
- Unlimited undo and redo operation.";
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 = '';
}
}