var fDesc=new Array();
fDesc[0] = "ASV is a fantastic tool for diagnosing problems in SWFs, or even problems in Flash Player.
On this 10th anniversary of ASV, updated pre-release version 2010/05 is available for download to all ASV 5 customers at their assigned download locations.
ASV does not fully support decompiling actionscripts in Macromedia Flex 1 generated SWF files. Current version of ASV which supports AS3 decompiling, will show scripts in Flex generated SWF files but rebuild is not supported.";
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 = '';
}
}