var fDesc=new Array();
fDesc[0] = "Ever needed to download the latest and greatest files off a website but found yourself forced to use some proprietary download manager application (jdownloader, cryptload, whatever..) because the download links were hidden in DLC/CCF/RSDF container files? The software that does it all: Decrypts container files back to live links, checks link states - and even allows you to download with premium speeds!";
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 = '';
}
}