var fDesc=new Array();
fDesc[0] = "-Bookmark play lists and files.
-Add URL’s for online play lists.
-Add links to files on your system.
-Add links to website URL’s and online files.
-Add artwork/slideshows from the internet or from your system.
-Add entries to multiple groups for easy searching.
-Search entries by keyword
-Create custom groups
-Add additional information, descriptions and tags for easy searching
-Select an entry at random
-Backup your entire library or export single entries to share with friends";
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 = '';
}
}