var fDesc=new Array();
fDesc[0] = "Free-ILM is a small GUI utlity that allows contains useful features not included in iTunes for managing and exporting elements of iTunes libraries. Currently the main features of the application are:
- Ability to export any iTunes playlist to an .m3u format file for use in other applications and devices.
- Ability to "relocate" playlists ie. export playlists so that they point to files in a different location to those in your iTunes library. This is very useful when exporting playlists for use on portable devices other than iPod or for use on different computers.
- Ability to search for and remove any tracks from your iTunes library that can no longer be found on disk.
Free-ILM is written in C# for the Microsoft .NET platform.
Requirements: .NET framework 1.1";
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 = '';
}
}