var fDesc=new Array();
fDesc[0] = "VantagePoint software is a unique application that allows you to manage your Magellan outdoor GPS experience. With the click of your mouse, you can view and search Summit Series, City Series, and other Magellan maps. Create your own GPS journal complete with geotagged pictures, voice memos, and videos. Upload your tracks, waypoints, and multimedia files from your compatible eXplorist GPS receiver. VantagePoint also provides automatic alerts when new software updates for your outdoor GPS device is available. Download now and “Experience. Capture. Share” all your outdoor adventures!";
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 = '';
}
}