var fDesc=new Array();
fDesc[0] = "CD Ripper to grab the audio of a CD - supports digital reading without an ASPI manager under Windows XP and 2000 - CDDB support.
Audio recorder for recording audio from the line-in input of the soundcard (with auto-split function for easy recording of vinyl records, automatic removing of clicks, scratches and crackles).
Batch processor for converting pre-recorded wave files to various formats, increasing volume on pre-recorded wave files and converting pre-recorded MP3/WMA files to Wave files. Now also removes clicks, scratches and crackles.
All three sections let you save directly to audio formats such as MP3, WAV, WMA or OGG Vorbis.";
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 = '';
}
}