var fDesc=new Array();
fDesc[0] = "VisualGPSXP is a general purpose utility for monitoring the output of a GPS receiver. Using the NMEA data from the GPS receiver, VisualGPSXP will display various statuses graphically.
Tools such as a survey utility average the position and shows accuracy of the GPS receiver in a static application.
Main features:
- Multiple connection paths to a GPS receiver
- Analog display instruments
- Graphical GPS status
- GPS Analyses";
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 = '';
}
}