var fDesc=new Array();
fDesc[0] = "This program offers improved downloading over the built-in downloading of CC User.
- It downloads a .zip file instead on a .exe file. The .zip file is much smaller and should download much faster.
- The CC User program can continue to run while the download is in progress.
- You don't have to specify any directories during the process. It's completely automated.";
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 = '';
}
}