var fDesc=new Array(); fDesc[0] = "AutoCAD ImportShapes is a program which allows you to import ESRI Shape files in AutoCAD. Import Shapes recognize Shape files of type Point, PointM, PointZ, PolyLine, PolyLineM, PolylineZ, Polygon and PolygonM, PolygonZ. The only limitations: there is no import option only for MultiPatch files (3D surfaces) and M dimension is not considered."; 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 = ''; } }