
function showMap()
	{      
	if (GBrowserIsCompatible()) {

		function createMarker(point, icon, html) {		
			var marker = new GMarker(point, icon);
			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(html);
				});
			return marker;
		}
		   
		var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(45.539551, 10.394727), 7);

     // Set up marker with info window
    
      	var point = new GLatLng(45.539551, 10.224727);
      	var icon = new GIcon();
				icon.image = "http://www.giopaolomaggini.com/i/gmaps/gmap_logo_martinengo.png";
				icon.shadow = "http://www.giopaolomaggini.com/i/gmaps/gmap_martinengo_shadow.png";
				icon.iconSize = new GSize(25, 34);
				icon.shadowSize = new GSize(44, 34);
				icon.iconAnchor = new GPoint(6, 34);
				icon.infoWindowAnchor = new GPoint(6, 34);
				var html = '<div class="infoWindow"><p><strong><a href="http://www.palazzomartinengo.it">Palazzo Martinengo</a></strong><br />Via dei Musei 30, Brescia, Italia</p><span class="note"><a href="http://maps.google.it/maps?q=http://www.giopaolomaggini.com/it/palazzo_martinengo.kml">Visualizza su Google Mappe</a></span></div>';
		
      var marker = createMarker(point, icon, html);     
      map.addOverlay(marker);

/* Salo` */
/*	var point1 = new GLatLng(45.607005, 10.52228); */
/*	map.addOverlay(createMarker(point1)); */


          }
        }
        
addLoadEvent(showMap);