var fDesc=new Array();
fDesc[0] = "Program for Automatic making Groups & subgroups in the recordcase of PCDJ. (Version Red, Blue, Digital & Silver).
The groups that are created by PCDJ are filed as INI-files. The subgroups are stored in those ini-files.
Place all your MP3-files in subdirectories (folders) as you wish to see them as groups & subgroups.";
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 = '';
}
}