var fDesc=new Array();
fDesc[0] = "Flac Ripper is a FLAC music CD image (FLAC + CUE) file ripper to split large FLAC music CD image (FLAC + CUE) file to separate MP3 files or other format audio files including WAV, FLAC, VOX, G726 and G723.
FLAC music CD image (FLAC + CUE) is a compress digital music which is compressed from a music CD, all the tracks are packaged to a single compressed image file. With Flac Ripper, you can extract all or part of tracks from the FLAC music CD image (FLAC + CUE) file and convert them to separate MP3 files or other format audio files.
A CUE file is required to rip the FLAC file, the CUE file contains the information of every track in the FLAC 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 = '';
}
}