<!--

   function ax_setRoute (routeID) {
   
      document.MapArea.setRoute(routeID);
   
   }
   
  
   function ax_addIcon (name, lat, lon) {
   
      document.MapArea.addIcon(name, lat, lon);
   
   }

   
   function ax_removeIcon (name, lat, lon) {
   
      document.MapArea.removeIcon(name, lat, lon);
   
   }

   
   function ax_enableFrame (northLat, westLon, southLat, eastLon, frameWidth, frameColorRed, frameColorGreen, frameColorBlue) {
   
      document.MapArea.enableFrame(northLat, westLon, southLat, eastLon, frameWidth, frameColorRed, frameColorGreen, frameColorBlue);
   
   }
   
   
   function ax_disableFrame () {
   
      document.MapArea.disableFrame();
   
   }

//-->