var fDesc=new Array(); fDesc[0] = "CoordTrans is very easy to use, and full of Wizards to help you with more complex tasks. Convert between UTM, WGS84 and NAD27 / NAD83, and more... almost all projections and datums on Earth are supported. CoordTrans converts geographic coordinates between different coordinate systems.

You can convert single coordinates, or coordinates stored in text files, Access databases or in ESRI Shapefiles. The advanced user can create and edit custom datums and projections."; 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 = ''; } }