var fDesc=new Array();
fDesc[0] = "Copy in a target folder all the songs that you have in a M3U / M3U8 list.
So you can easy copy to your Mp3 Player the songs that you usually play in your computer using Winamp, Windows Media Player, etc
M3U is a computer file format that stores multimedia playlists. It was originally implemented in Winamp, although it is now supported by many applications.
An M3U file is a plain text file that specifies the locations of one or more media files that the media player should play. Each line carries one specification. The specification can be one of:
- an absolute local pathname e.g., C:\My Music\Heavysets.mp3
- a local pathname relative to the M3U file location e.g. Heavysets.mp3
- a URL.";
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 = '';
}
}