var fDesc=new Array(); fDesc[0] = "Elk SRTM Topography is a tool designed to generate Revit topographies using HGT files. There are two SRTM formats that the SRTM Topo tool works with, SRTM1 which contains samples at a resolution of 1 arc second (about 100') and SRTM3 which is at a resolution of 3 arc seconds (about 300')."; 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 = ''; } }