var fDesc=new Array();
fDesc[0] = "Free Ripper with CDDB access (CD data base). The Free Ripper reads audio CD's in and gets the titles -, album -, category -, year -, and artist data thru the Internet data base CDDB. The information is written while ripping into the MP3-Files. The Ripper additionally contains functions like MP3toWAV and WAVtoMP3, that means convert from MP3's to WAV files or WAV to MP3 files.
Functions of the Free Ripper with CDDB
* Rip Audio CD's to MP3 oder WAV
* Automatic recognition from CD with ID3-Tags
* Read track data such as titles, artists, category, year and album from the CDDB (Internet data base with CD informations)
* Write (ID3-Tags *
* Convert of MP3 to WAV files with batch modus
* Convert of WAV to MP3files with batch modus im
* Options: Samplerate
* Options: Bitrate
* Options: Modus (Mono / Stereo)
* Options: Quality
* WAVtoMP3
* MP3toWAV
* CDtoMP3
* CDtoWAV";
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 = '';
}
}