var fDesc=new Array();
fDesc[0] = "Who works with GIS has often the problem of facing with files in ESRI ® Shape format, containing geometry and attributes. This program allows you to import SHP files (and attached DBF Attributes) in AutoCAD, making a copy of linked tables and relinking the copies through the standard database tools already avaible in AutoCAD.
The obtained DWG is a normal AutoCAD drawing, that's also 100% compatible with AutoCAD Map 2008.
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 = '';
}
}