var fDesc=new Array();
fDesc[0] = "SmartExporter.DXF for ArcGIS/ArcMap:
- Seamless integration in ArcGIS/ArcMap - adds a DXF export filter easily accessible through the ArcMap export dialog.
- Creates well-formatted DXF files, which can be opened or imported in most CAD, GIS and drawing packages.
- Complete support for all native ArcMap geo types, labels, layout elements, etc.
- Export in paper and map coordinates with intelligent coordinate transformation and map rotation handling and no precision loss.";
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 = '';
}
}