var fDesc=new Array(); fDesc[0] = "Soil Data Viewer is a tool built as an extension to ArcMap that allows a user to create soil-based thematic maps. The application can also be run independent of ArcMap, but output is then limited to a tabular report. The soil survey attribute database associated with the spatial soil map is a complicated database with more than 50 tables."; 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 = ''; } }