var fDesc=new Array();
fDesc[0] = "AutoDEM (aka as AutoMNT) is a freeware GIS software to create Digital Elevation Models (DEM) from scanned topographic maps for Windows.
Through different data layers (map, contours, DEM, etc.), AutoDEM provides many tools for :
-Topographic map analysis
-Contour lines extraction and reconstruction
-Contours to DEM interpolation and DEM analysis
-DEM to TIN conversion
-Toponyms extraction
Most of the worldwide file formats used in the GIS community are supported. AutoDEM can also directly import data from web servers (TerraServer, WebMapService, WFS, …)";
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 = '';
}
}