var fDesc=new Array();
fDesc[0] = "It is an application designed to manage all your MP3 collection.
Main Features:
- MP3 Manager and MP3 Data Engine included.
- Store references to thousands of music files and access them quickly.
- Store album cover images.
- View statistical information about your MP3's.
- Filter songs based on album, artist or genre.
- Rank songs on a numeric scale.";
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 = '';
}
}