var fDesc=new Array(); fDesc[0] = "GeoMerge is a geoprocessing utility that allows you to merge two or more shapefiles or TAB files into a single shapefile. Select two or more shapefiles or TAB files that are to be merged, and click the 'Merge Files' button. The files will be validated for a common schema. If all of the files selected have exactly the same column definitions in the .dbf file the records and shapes from each individual file will be concatenated into a new shapefile."; 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 = ''; } }