 function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(45.497397, 11.423639), 13);
		 map.setUIToDefault();

	// 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>" + html + "</div>";

        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(text);
        });
      
        return marker;
      }	 	
      	  var point = new GPoint(11.423639,45.497397);
		  var html = "Studio Ankiros, Viale Europa 91/f <br> 36075 Montecchio Maggiore (VI)";
        var marker = createMarker(point, html);
        map.addOverlay(marker);

      }
    }
