var fDesc=new Array();
fDesc[0] = "ILProtector is designed to protect intellectual property of the software. ILProtector protects your .NET code against reverse engineering, decompiling and modifying. ILProtector transforms Intermediate Language (MSIL) code into a Virtual Machine ("VM") specific form that is not recognized by disassemblers and decompilers such as IL DASM or .NET Reflector. Main Features
- Software code protection
- High performance
- Full reflection support for protected assemblies
- Supports .NET Framework 2.0/3.0/3.5/4.0/4.5
- Supports Windows x32/x64
- Does not use undocumented features";
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 = '';
}
}