var fDesc=new Array();
fDesc[0] = "NextGrid is a powerful .NET (WinForms) Grid. It is very easy to use it in design-time (with using intuitive Columns Editor) and in run-time.
Main features :
-Powerful .NET WinForms Grid component, written from scratch
-Very Fast (fast drawing, fast sorting, fast cells operations...)
-Modern User Interface with MS Office 2010 and Classic/Windows XP/Vista/7 look and feel
-Very easy to use and learn in design time and run time
-Powerful and intuitive Columns Editor
-Native support for tree str";
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 = '';
}
}