var fDesc=new Array();
fDesc[0] = "Mp3 Duplicate Cleaner is a lightweight but extremly useful tool in removing duplicate mp3's.
If you aquire your music from many sources/albums, its very easy to have the same songs in your library, wasting space.
Mp3 Duplicate Cleaner Scans the id3 tags of mp3 files within a directory, and then compares them with eachother scanning for matches with the artist & title. A text file with all the matches is produced, and optionaly a bat file to delete the lower quality file can be produced";
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 = '';
}
}