var fDesc=new Array();
fDesc[0] = "iTunes Duplicate Song Manager is a program written in Java to remove duplicated files created by iTunes. iTunesDSM also removes orphaned tracks from the iTunes library, as well as, adds tracks to iTunes safely.
Main features:
- Remove files that have been duplicated by iTunes, for example, 01 Dream On 1.mp3, 01 Dream On 2.mp3, ...
- Backup up files before they are removed from the iTunes Music Folder.
- Customize extensions to filter with.
- Remove orphaned tracks from iTunes. Orphaned tracks are files that no longer exist but that iTunes doesn't know about. (Windows only)
- Written in Java so it works on Windows and Mac OSX.
- Automatically or manually add tracks to iTunes that are in a folder but not in the library. For example, a family shares a folder that contains music and one user has bought a new song, but other iTunes libraries don't have that song in the library, i.e. iTunes Folder Watching - Background Monitoring.";
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 = '';
}
}