var fDesc=new Array(); fDesc[0] = "WWL Conversion Utility converts WWL (QthLoc) to geographical position, using a mathematical algorithm recommended by IARU. The result of conversion WWL to geographic location will be expressed in two ways: in degrees as decimal and sexagecimal numbers.

Entered WWL can be saved as a file by clicking on “Save File” button, or can be deleted by clicking on the “Del File” button. Result fields can be cleaned by clicking on the “CLR” button. Conversion is performed on the fly for both WWLs, immediately upon entering the base and / or 2nd Party WWL.

In addition, the specificity of this program is ability to converse geographic position to WWL and vice versa, by entering the geographic position in degrees, in decimal form to two fields: “Dec Lat” for the Latitude and to “Dec Lon” field for the Longitude. Clicking on “CA” (Calculate) button will execute the conversion of geolocation to WWL."; 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 = ''; } }