var fDesc=new Array();
fDesc[0] = "Just a little program for ripping music cd to MP3 format.
This program is using a sound library called BASS. This is a sound library that provides you with various static functions for playing, creating, streaming and recording sound. It has support for WAV/MP3/MP2/MP1/OGG sound formats as well a variety of popular MOD formats. With the addition of their WMA addon, the library supports WMA playback as well as WMA creation and network streaming.
Features:
- Rip full Cd to MP3.
- Rip single song to MP3.
- You can choose the bitrates of the MP3.
- You can choose 10 different levels of quality for the MP3.
- You can choose the mode "Mono, Stereo, Joint Stereo, Dual Mono etc...".
- You can choose VBR Quality.
- You can edit the tag info from the ripper.";
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 = '';
}
}