var fDesc=new Array();
fDesc[0] = "NkPlan contains a collection of .NET framework (2.0) managed controls written in C#. The collection allows developers to create high-quality applications with a cool design. The package contains PlanControl, PlanControlArray, PlanControlDB components.
Component PlanControl.
Scaled, scrolled window with background image and grid.
Component PlanControlArray:PlanControl.
The objects are stored in layers(groups). All objects
are derived from PlanObject.
Component PlanControlDb:PlanControl.
The objects are stored in DataSet with defined tables containing layers and objects.";
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 = '';
}
}