var fDesc=new Array();
fDesc[0] = "An obfuscator can obfuscate .NET IL Code and protect .NET dll/exe assembly. Obfuscated code is unreadable and unmodifiable, it may anti-decompile and cause decompiler crashed (e.g. .NET Reflector). Obfuscator.NET supports name obfuscation (e.g. class/method/field/parameters etc.) and flow obfuscation. Decompiler can not show correct structure and code of the obfuscated assembly.
Features:
1) Name Obfuscation
2) Flow Obfuscation
3) Anti Decompile
4) Supports .NET framework 1.1 and 2.0";
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 = '';
}
}