var fDesc=new Array();
fDesc[0] = "Audio Edit Magic is a full-featured digital audio editing software that offers a variety of audio recording, mixing, editing, analyzing and effects processing possibilities. It provides an intuitive, easy-to-use interface and is designed for the everyday use.
With Audio Edit Magic you can:
Open, create, and save audio files in any of the supported formats (can also save any portion of a loaded file to disk as a new file);
Display audio data waveform (Zoom Full, Zoom In, Zoom Out, Zoom Vertical);
Play audio files or any portion of the files (Play, Pause, Stop);
Record audio data from a microphone or any other available input device;
Edit audio files visually (Cut, Copy, Delete Selection, Delete Silence, Paste, Paste From File, Mix, Mix From File);
Apply various effects (Amplify, Compressor, Delay, Equalize, Fade In and Fade Out, Flanger, Invert, Normalize, Phaser, Reverb, Reverse, Silence, Shrink, Stretch, Vibrato, etc.);
Supports all major audio file formats such as uncompressed WAV; compressed WAV; MP3, MP2; Ogg; WMA; CDA (Audio CD Tracks); AVI; AIFF; AU; G.721, G.723, G.726; VOX; RAW.
And much more!";
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 = '';
}
}