var fDesc=new Array(); fDesc[0] = "Trekker Map Manager offers an easy and intuitive way to get to a new destination address. When entering an address, the Map Manager's keys are used like a cell phone keypad. The entered address will be kept in the destination list as one of your landmarks. You can then be guided to that address with pedestrian or motorized turn instructions as easily as you do with landmarks. To facilitate planning your trip, you can create the address landmark while you are at home, even without GPS coverage."; 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 = ''; } }