var fDesc=new Array();
fDesc[0] = "Use Easy ID3 Editor to easily add, edit and remove ID3 tag data. It contains support for both version 1 and version 2 of the ID3 tagging schemes and allows you to edit MP3 files on a one-by-one basis or in a batch mode, allowing for the editing of a group of files that require one or more common attribute(s), such as album or artist.
Easy ID3 Editor also allows you to rip and encode your favourite audio CD-ROMs into MP3 format, this feature even has support for the online CD-Database allowing you to introduce the ID3 tag information as files are being encoded.
Additional features that are also incorporated into program are:
* A file-sorting wizard
* Re-naming of files based on their tag information.
* Exporting of music play-lists.
* An easy to use explorer interface
* An Integrated help system.
* And many, many more.";
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 = '';
}
}