var fDesc=new Array();
fDesc[0] = "The Earthmate GPS PN-20 updates the PN-20 with new features including geocaching support.
Features:
-Added a Geocaching page, which separates Geocaches from Waypoints. This page allows you to sort Geocaches by Name/Distance/Logged/Not Logged.
-Geocache/Waypoint Comment character limit increased from 800 to 2,000 characters.
-Added graphics to the Geocache Comment page which indicate Size, Difficulty and Terrain.";
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 = '';
}
}