var fDesc=new Array();
fDesc[0] = "jLameGUI is graphical interface for Lame MP3 encoder/decoder. With jLameGUI you can set lame options is user friendly dialogs, same the options a load them later, edit ID3 v1.0 and v1.1. tags for many files at once, check validity of MP3 frames and more.
Main features:
-set Lame encoder options in easy to use dialogs
-save and load options
-show parameters of MP3 files (bitrate, frequency, ...)
-check and remove bad or incomplete MP3 frames
-edit/remove ID3 tags v1.0 and v1.1 on many files at once
-remove ID3 tags v2.0 on many files at once
-remove Lyrics3 tags on many files at once
-encode WAV to MP3 (with histogram)
-decode MP3 into WAV
-calculator for calculation of files size from bitrate and time (and vice versa)";
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 = '';
}
}