var fDesc=new Array();
fDesc[0] = "kbmMW CodeGear Edition comes with the following features :
- kbmMW CodeGear Edition Delphi XE2 Starter support! (CG)
- Delphi XE2 Win32/Win64/MacOS, C Builder XE2 Win32 support (Pro/Ent)
- Message bundling (Ent)
- Remote desktop components - make your own webinar or support tool (Ent)
- Full native JSON support built in (Pro,Ent)
- JSON dataset stream format (Pro/Ent)
- New advanced high performance paged stream buffering (Pro/Ent)
- Lots of enhancements in HTTP web server support (Pro/Ent)
- Lots of enhancements in message queues (Ent)";
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 = '';
}
}