//<![CDATA[

    function load(lat,long,texto) {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        var center = new GLatLng(lat,long);
        map.addControl(new GSmallMapControl());
   map.enableContinuousZoom();
map.enableDoubleClickZoom(); 
        map.setCenter(center, 13);
        

        // Creates a marker at the given point with the given number label
        function createMarker(point, texto) {
          var marker = new GMarker(point);
          GEvent.addListener(marker, "mouseover", function() {
            marker.openInfoWindowHtml("<span class='n10'>" + texto + "</span>");
          });
          return marker;
        }

        var point= new GLatLng(lat,long);

map.addOverlay(createMarker(point, texto));
      }
    }

    //]]>   





 