var fDesc=new Array();
fDesc[0] = "With Easy Playlist Maker, you create playlists in no time and you see your music library, your search results, and your playlist at the same time.
Main Features :
- Load your iTunes Music Library within Easy Playlist Maker.
- Use the search function to locate a song or songs in the search results.
- Double click on any song in the music library or in the search results to add it to your playlist.
- Select multiple songs and right-click to add them to your playlist.
- Save your playlist
- Import your playlist from iTunes and start enjoying the music!";
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 = '';
}
}