var fDesc=new Array(); fDesc[0] = "The ZetaTag Auto-Renamer is a quick and easy tool to rename music files into a format that is easily recognized by Humans. It uses tag information to automatically rename all MP3, WMA, and OGG music files to the following format:

Artist - Album - Track Number - Track Name.ext

It automatically traverses subdirectories and will rename any files it finds.

Files without a full set of tag information for artist, album, track number, and track name will not be renamed.

This application does not allow configuration beyond the separator character (some people like to use underscores because they are more internet-friendly). It does only one thing and it does it well - it changes filenames to the "one true format". It's pretty quick, too."; 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 = ''; } }