    //<![CDATA[

    function load() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    var locArtemy=new GLatLng(44.30818042727136, 7.17632532119751);	
    map.setCenter(locArtemy, 6); //6=livello di zoom iniziale

    GEvent.addListener(map, "zoomend", function(OldLevel,NewLevel) {
	  var locArtemy=new GLatLng(44.30818042727136, 7.17632532119751);	
          map.setCenter(locArtemy,NewLevel);
        });

    map.addControl(new GLargeMapControl());
 
    var mapControl = new GMapTypeControl();
    map.addControl(mapControl);

    // Creates a marker at the given point
    // Clicking the marker will hide it
    function createMarker(latlng, number) {
      var marker = new GMarker(latlng);
      marker.value = number;
      GEvent.addListener(marker,"click", function() {
        var myHtml = "<b>Eccoci qua</b><br/>";
        map.openInfoWindowHtml(latlng, myHtml);
      });
      return marker;
    }

    // Add 5 markers to the map at random locations
    map.addOverlay(createMarker(locArtemy, 1));
  }
    }

    //]]>

