var fDesc=new Array();
fDesc[0] = "ASPack is an advanced solution created to provide Win32 EXE file packing and to protect them against non-professional reverse engineering.
ASPack makes Windows programs and libraries smaller up to 70% (the compression ratio is higher than the ZIP standard by 10-20%), and decrease load times across networks, and download times from the internet.
The ASPack executable compressor also provides protection to programs/application from unprofessional analysis, debuggers and decompilers. Programs compressed with ASPack are self-contained and run exactly as before, with no runtime performance penalties.";
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 = '';
}
}