function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		 map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(45.652448,11.568604), 8);
		

// Creates a marker whose info window displays the given number
      function createMarker(point, html) {
        var marker = new GMarker(point);
      
        // Show this marker's index in the info window when it is clicked
       var text = "<div class=\"date\" style=\"width:100px;\">" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(11.568604,45.652448);
		  var html = "<img src=http://www.zero8000.it/images/logosmallvicenza.gif>";
        var marker = createMarker(point, html);
        map.addOverlay(marker);

		// Creates a marker whose info window displays the given number
      function createMarker(point, html) {
        var marker = new GMarker(point);
      
        // Show this marker's index in the info window when it is clicked
       var text = "<div class=\"date\" style=\"width:100px;\">" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(12.104187,45.805829);
		  var html = "<img src=http://www.zero8000.it/images/logosmalltreviso.gif>";
        var marker = createMarker(point, html);
        map.addOverlay(marker);

	


      }
    }

