var fDesc=new Array();
fDesc[0] = "javaMP3 is an easy to use open source mp3 player for Windows OS.
Main features:
- Supported Audio Types: MP3, OGG.
- A .exe file with icon for start the java program.
- Open and Save external Playlist (M3U, PLS, XSPF)
- A Toggle Playlist Repeating button and a Toggle Playlist Shuffling button.
- Set Volume.
- Add single or multiple files, or a directory with inside mp3.
- Options in the settings for allow the search of mp3s inside sub-directories.
- Track loaded by a Thread for not freeze the program when you load a lot of tracks.";
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 = '';
}
}