var fDesc=new Array(); fDesc[0] = "Taggin' MP3 is an application designed to help you to easily rename MP3's.

Main Features:

- Programmed in C Builder 5.0.
- Supports the ID3 v1.1 and ID3 v2.3.0 standards.
- Automatic detection and notification of ID3 tags.
- Automatic importing of ID3 based on filename.
- Renaming of files using title, author, album, comment, year, genre, and track (in addition to other common fields).
- Global modification of ID3 tag field(s).
- Ability to ignore ID3 tags when batch renaming.
- File information, such as bitrate, length, file type, etc."; 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 = ''; } }