var fDesc=new Array(); fDesc[0] = "This is a mapset that displays areas (polygons) and borders (lines) for the various Washington State Deer and Elk Hunting Areas. Washington Hunting Units is made to be "transparent", which means that when loaded with other Mapsource products (or the GPSr base map) the Hunting Units appear as data laid over the top of the other maps. Washington Hunting Units can also be loaded directly to the GPSr on its own. Custom type definitions are used to help distinguish the type of hunting unit (deer vs. elk)."; 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 = ''; } }