var fDesc=new Array();
fDesc[0] = "WGS-84 Calculator is used to calculate geodetic distance and azimuth between two points (latitude and longitude). In addition, it can calculate a new point from origin using the given azimuth and distance.
Lat/long values can be inserted using three different formats; DD:MM:SS.ssss, DD:MM.mmmmmm or DD.dddddddd.
Calculations are based on WGS-84 (World Geodetic System - 1984) co-ordinate system, which is used for example in aviation. Result can be copied to Windows clipboard and then used in other Windows programs.
The WGS-84 Calculator program is very easy to use.
Sistem requirements:
Operating system Windows 95 / 98 / ME / NT / 2000 / XP/ 2003 / Vista";
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 = '';
}
}