var fDesc=new Array();
fDesc[0] = "Find and Remove duplicate tracks in Windows Media Player
-Media Sweeper groups your duplicate songs in easy to review groups.
-Automatically select which of the duplicates in each group you want to keep.
-Easily search found duplicates for specific tracks.
-Remove all the duplicates at the click of a button.
-Tracks removed are optionally backed up for safe keeping.";
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 = '';
}
}