var fDesc=new Array(); fDesc[0] = "If you connect a GPS receiver, NMEA0183-signals (GGA/GLL/RME) will provide your own position every 5 seconds. Transmission and reception of APRS-signals is done either via SOUNDCARD (program parts of AGWPE are included), by a SCS-DSP-TNC or SCS-PTC-II with PR-capability (even Robust Packet Radio), a PK-232, or a TNC via AGWPE. Besides of that there is the possibility to monitor stations via INTERNET (findu.com/aprs.fi).

The program shows your position and all APRS-stations received on HF, VHF, or internet (even simultaneously) on the map. You can see symbols, callsigns and tracks."; 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 = ''; } }