var fDesc=new Array(); fDesc[0] = "Hierarchical DataGridView is adaptable and efficient view of smaller amount of hierarchically organized data, View of hierarchy without additional time spent on developing and filling in respective data structures. View of data from various data sources (MS SQL Server, MS Access, XML and all the other sources to which the user can connect through ADO.NET). Simple and flexible control that does exactly what its name says: displaying hierarchically organized data"; 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 = ''; } }