var map = null;
var geocoder = null;

    function onLoad() {

if (GBrowserIsCompatible()) {

// Star icon6
var icon6 = new GIcon();
icon6.image = "star.png";
icon6.iconSize = new GSize(15, 15);
icon6.iconAnchor = new GPoint(6, 15);
icon6.infoWindowAnchor = new GPoint(5, 1);

      
map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(1, 1), 1);
map.addControl(new GSmallMapControl());
geocoder = new GClientGeocoder();


var address_ita = 'Milano, Italy';
geocoder.getLatLng(address_ita,		
function(point){
if (point){
map.setCenter(point, 10);
}
}
);


var marker20 = new GMarker(new GPoint(9.16721442064825,45.4829780372717), icon6);
map.addOverlay(marker20);
var html20 = "<font class='corpo1'><b>Hotel Mignon</b> *<br>Via Saronno, 5 - 20154 Milano (MI)</font>";
GEvent.addListener(marker20, "click", function()
{
marker20.openInfoWindowHtml(html20);
});
marker20.openInfoWindowHtml(html20);

     }
  }
