var fDesc=new Array(); fDesc[0] = "GPX to USR Geocaching Utility allows you to import your GPX files and convert them in to Lowrance .USR files. You can easily import all your geocaching information contained in your GPX files such as Name, Owner, Difficult and Terrain, Type (traditional, multi, virtual, etc.), size( micro, small, regular, large), waypoint code and hints. You can also assign geocaching specific icons for units that support them. To find out if your unit has the geocaching-specific waypoint symbols, put your cursor on a waypoint, press FIND twice, press the right arrow until you see "Edit Symbol", press ENT, cursor down almost to the bottom and look for the ghost, letter, treasure icon, etc."; 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 = ''; } }