var fDesc=new Array();
fDesc[0] = "Basically, Custom Content Manager puts all the files where they need to go, and lets you remove them later with just the click of a button.
More specifically, the zip file with content you want to install is called a package. For a package to work with Custom Content Manager it needs to have a manifest. A manifest is a small text file that says what files go where and also some info about who made the content. (Content creators: Custom Content Manager includes a manifest builder to read your package and write a manifest for you.)
Custom Content Manager keeps track of the packages it has installed. Later, if you decide you want to remove a package you just select it and click remove. Done!";
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 = '';
}
}