var fDesc=new Array();
fDesc[0] = "Ntlea is a Windows NT series Locale Emulator software.
Main features:
- Support From WinXP-SP2 to Current Windows 10(including: XP/Vista/7/8/8.1/10)
- Support Random BaseAddress Application Hook, and Some special non-standard Window Message Handling Hook (while ntlea may crash there)
- Support a lot of RMXP/RMVX applications, and more compatible under X64 system to run X86 applications
- Support Hook TabCtrl Message-Handler, to fix garbled-strings special in windows 8 / 8.1";
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 = '';
}
}