var fDesc=new Array();
fDesc[0] = "CADtoEarth for Autodesk AutoCAD Civil 3D extends a family of add-ins that establish a bi-directional connection between CAD environments and Google Earth or Google Maps.
Main features:
- Place a 3D structure on the imported surface within modeling session and then upload it back to Google Earth.
- Upload a 3D structure directly from a modeling session onto Google Earth.
- Perform the same operations on 2D objects between Civil 3D and Google Maps.";
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 = '';
}
}