var fDesc=new Array();
fDesc[0] = "Edraw Diagram Component is a drawing board that can be used from developers in order to create a wide range of diagrams using templates, shapes, and drawing tools while working in an intuitive and familiar Office-style environment. The component is lightweight and flexible, and gives developers new possibilities for drawing flowcharts, organizational charts, workflow, network diagrams and other business charts in a form or web page. You can customize the toolbars and template library according to your requirement.
It is an ActiveX control encapsulating a powerful 2D graphic editor and can be easily integrated to the modern integrated development environments like Visual C++, Visual Basic, C# or VB.NET, Acess, ASP.NET, Visual FoxPro, Delphi, PowerBuilder, and more.";
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 = '';
}
}