var fDesc=new Array();
fDesc[0] = "Dump Flash Decompiler is a software utility designed to process SWF files. It offers the opportunity to treat compressed and decompressed SWF-files and shows the detailed structure in the tree form.
Using this Flash Decompiler, you will get a fast access to decompressed SWF files. Also, you will be able to set up some preferences such as : autoparsing, statistics report, language. You will be able to export the results to a XML file and also verify a statistics report.";
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 = '';
}
}