var fDesc=new Array();
fDesc[0] = "AutoCAD® Map 3D mapping software is a model-based infrastructure planning and management application that provides broad access to CAD and GIS data. With intelligent industry data models and tools, you can apply regional and discipline-specific standards. These technologies help you improve data quality, support productivity, and better manage infrastructure assets. With AutoCAD® Map 3D Enterprise, users have the ability to integrate spatial information into an Oracle® database, so data is available throughout the organization. While working in a single, familiar AutoCAD® software-based environment, you can:
-Directly access and edit more information
-Integrate and analyze asset information
-Communicate more effectively";
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 = '';
}
}