var fDesc=new Array();
fDesc[0] = "Logic Builder SDK - the universal state-engine with ANSI C core, for any programming language, IDE and platform.
Features:
-Event-driven state machine
-Supported mode-types: Exclusive, Concurrent, No default child.
-Multiple trees.
-Events with arguments.
-Mode-trees info stored as binary or "C" file.
-Data-driven multilingual code generator.
-Excel toolbar (GUI).
-Find & Replace tool with auto-backup.
-Trace in Excel.
-Advanced Win32 Graphics Library (primitives for Win32 simulations).
-Add-In for Visual C 6 (GUI).
-Add-In for Visual C# (GUI).
Currently supported programming languages: C, C , Visual Basic, Visual Basic.NET, C#, support of any other language can be added shortly. Logic Builder uses the same state-oriented model as RapidPlus IDE.";
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 = '';
}
}