var fDesc=new Array(); fDesc[0] = "Mapdekode is a program to create vector maps (IMG's) for Garmin GPS units. MapDekode supports only the creation of the IMG format R&R version 3, with the zones 0,1,2,83,84 for the detail maps and zones 2,3,4,85,86 for the general map. The map sections utilized, are TRE (organization of the map), LBL (all texts and labels) and RGN (the map data)."; 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 = ''; } }