var fDesc=new Array(); fDesc[0] = "GDL Adapter offers the ability to work with intelligent and parametric GDL objects in the AutoCAD and ADT environments. GDL objects can be placed into the 2D and 3D workspace with a simple drag and drop operation. Once placed, objects can be edited at any time, including modifications to color, material or any other parameter setting. GDL objects work inside AutoCAD as common AutoCAD blocks."; 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 = ''; } }