var fDesc=new Array();
fDesc[0] = "GPS stands for Global Positioning System and allows you to know where on the world you are. With it, you have the ability to know your location on the globe. Positive X values are more to the east, negative X values are more to the west of this centre of the world. The same for the Y values: positive numbers are to the north, negative numbers to the south of this point.
The GPSD compass will point you to any entered X,Y location. It will guide you to the entered target location using a pointing arrow and also shows the remaining distance to that target.";
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 = '';
}
}