var fDesc=new Array();
fDesc[0] = "Catalog CDs, vinyl and music files on your PC or Mac
Automatically download all album details and images
Get artist, title, full song lists, genre, label, cover art, etc...
Feature-rich and highly customizable desktop software
Lots of music data fields, many advanced features and customization options
Install on multiple computers, then sync your data between them
Store music data & images locally, optionally sync with our free CLZ Cloud storage";
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 = '';
}
}