var fDesc=new Array();
fDesc[0] = "The DXF Page Exporter is an export filter for ArcMap that gives the user the ability to export a Map Frame or a Page Layout as a DXF file.
Functionality
>> Can export maps and layouts
>> Layouts and maps can be exported in "paper coordinates" or in "real world" coordinates (the coordinate system of one of the map frames); export to "real-world" coordinates can be done with rotated maps as well.
>> Preserves the symbology (line widths, line types, polygon fills, hatches, etc.)
>> The colors are matched as closely as possible using standard and enhanced algorithms.
>> Can export in inches and millimeters
>> Different DXF formats supported - 2000 and r12";
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 = '';
}
}