var fDesc=new Array();
fDesc[0] = "The purpose of this venture is to create a detailed topographic map of the entire state of Florida at 24k detail. This map is created for Garmin GPS receivers and Mapsource.
Features:
- Roads - Interstates, highways, arterial roads, residential roads, limited unpaved roads (2009 Tiger Data)
- Railroads
- High resolution water data - lakes, rivers, streams, and washes
- Federal Land Usage - Wilderness area, national parks, and military bases/ranges, native american reservations
- Borders - County and state boundary lines
- Elevation contours - 5ft intervals (equivalent to 24k)
- GNIS Points of Interest - summits, mines, falls, dams, cemeteries, towers, populated places, etc.
- Trails - trail coverage including all National Forests
- Bathymetric data to 300ft depth for the state
- Wetlands in Dry Tortugas National Park
- State Park Trails/campsites
- Florida National Trail and its accompanying trails; version July 2010";
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 = '';
}
}