var fDesc=new Array();
fDesc[0] = "Earth Bridge is designed to bridge the gap between Google Earth and your GPS receiver. See your location on Google Earth in real-time and easily control your view. Record your track as you move.
Earth Bridge requires an NMEA 0183 compatible GPS device connected via a serial interface. The Garmin protocol is not supported at this time (but is planned). For information on getting your Garmin 18 USB to work with Google Earth using Earth Bridge,";
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 = '';
}
}