var fDesc=new Array(); fDesc[0] = "MSP GEOTRANS (Geographic Translator) is an application program which allows you to easily convert geographic coordinates among a wide variety of coordinate systems, map projections, and datums.
The user interface of GEOTRANS is similar to that of a calculator. To convert a set of coordinates, simply select the coordinate system or map projection, the datum, in which your coordinates are defined, then enter the source coordinates, select the coordinate system or map projection, and the datum, to which you want the coordinates to be converted, and click on the Convert button. The resulting coordinates will be displayed."; 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 = ''; } }