var fDesc=new Array();
fDesc[0] = "Audio Music Editor is an easy-to-use audio editor for professionals and music lovers.
Main features:
- Available effects: fade in, fade out, delay, flanger, vibrato, chorus, phaser.
- Available filters: band pass, low pass, high pass, low shelf, high shelf, notch.
- Join audio file with different audio formats.
- Mix 2 or more audio files with different format to one audio file.
- Supports recording to create new audio file.";
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 = '';
}
}