var fDesc=new Array(); fDesc[0] = "Check the distance between points.

This simple widget can be used to check the distance between some points. E.g. to check the length of your street or diameter of your neighbors garden and compare it with yours.

To add points simply click on the map. Map will be automatically centered over your current location (if you agree to resolve it). If you'd like to calculate distance to some points far away you can use location search located on a status bar.

After selecting two or more points the distance will be displayed on a status bar automatically."; 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 = ''; } }