var fDesc=new Array();
fDesc[0] = "The purpose of this venture is to create a detailed topographic map of the entire state of New Mexico at 24k detail. This map is created for Garmin GPS receivers and Mapsource.
Main features:
- Roads - Interstates, highways, roads, limited unpaved roads (Tiger 2009)
- Railroads
- High resolution water data - lakes, rivers, streams, marshes, and washes
- Federal Land Usage - Wilderness area, national parks, and military bases/ranges, native american reservations, some state parks
- Borders - County and state boundary lines
- Elevation contours - 30ft intervals (equivalent to 24k)
- GNIS Points of Interest - summits, mines, falls, dams, cemeteries, towers, populated places, etc.
- Trails - trail coverage inside of the national parks/forests as well as state parks
- Parks POI - trailheads, camping sites, forest service huts within the national parks/forests and National Parks";
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 = '';
}
}