var fDesc=new Array(); fDesc[0] = "EasyGPS is a Windows program that allows you to upload and download waypoints, routes, and tracks between your computer and your GPS devices. It supports Garmin, Magellan, Lowrance, and hundreds of other GPS receivers. The program lists all of your waypoints on the left side of the screen, and shows a plot of your GPS data on the right."; 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 = ''; } }