var fDesc=new Array();
fDesc[0] = "KISS Audio Editor is the easy way to record, edit and enhance your sounds!
Edit audio files visually; Record audio from a microphone or any other available input device. Apply various effects to your sounds.
Main Features :
- Powerful audio recording feature
- Edit audio files visually
- Apply various effects easily
- Easy to use interface will get you started editing in just minutes
- Easy to use bookmark manager
- Unlimited undo/ redo functions
- Supports a number of file formats including wav (multiple codecs), mp3, wma, ogg and many more.
- Burn your sound files to CD
- Includes speech synthesis (text-to-speech) conversion
- Completely Free!";
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 = '';
}
}