 function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(45.457828, 11.85457), 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.85457,45.457828);
		  var html = "Aqquatix via Praimbole, 7 - 35010 Limena";
        var marker = createMarker(point, html);
        map.addOverlay(marker);
    marker.openInfoWindowHtml(text);

      }
    }
	
	function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
