var fDesc=new Array(); fDesc[0] = "SWATeditor is a companion software to ArcSWAT. SWATeditor reads the project database generated by ArcSWAT interface to edit swat input files, execute SWAT, perform sensitivity, autocalibration and uncertainty analysis. This is a standalone program and does not require ArcGIS, thus helping users of ArcSWAT to share their project with others that do not have ArcGIS or much experience with GIS in general. In order to use the SWATeditor, the users need to have created an ArcSWAT project under the "write all" menu."; 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 = ''; } }