var fDesc=new Array();
fDesc[0] = "Audio CD Converter is a powerful, professional software which can extract digital audio tracks from an audio CD into sound files on your hard disk. You can save CD audio tracks to CD-quality MP3, WAV, WMA, OGG, M4A, AAC, AC3, RA, MP2, AU, FLAC and AIFF audio format in only one step.
Its key features include a built-in CD player, link to an online database to obtain track and album name information, support multiple CD-ROM drives, CD-ROM auto-detection, and control over Bit Rate, Channels and Volume for output files.";
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 = '';
}
}