var fDesc=new Array();
fDesc[0] = "RazorLame is a front-end for use with the LAME MP3 encoder. LAME is a great MP3-encoder: it's very fast, it produces high-quality files, has many advanced features (like Variable Bitrates and Joint-Stereo), and it's open source.
Unfortunately, it is a command line utility, and that is where RazorLame comes in: It provides an easy-to-use graphical user-interface which makes MP3 encoding even easier.
The first step when using RazorLame is to add some files. You can use the "Add" button, press Ctrl-O, use the menu, or simply drop some files onto the listview. If you drop a folder, audio files be added recursively for that folder.";
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 = '';
}
}