var fDesc=new Array();
fDesc[0] = "Easy way to convert Waypoints from KMZ or KML to GPX file format with the KML/KMZ to GPX Converter free.
Easy Steps :
- Save your waypoints in KMZ or KML format with google earth
- Import that format in the KML/KMZ to GPX Converter free
- Then select waypoint you want to convert to GPX format
- Export the GPX format
- Upload the GPX format in your GPS";
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 = '';
}
}