    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new google.maps.Map2(document.getElementById("map"));
        map.enableDoubleClickZoom();    
        map.enableScrollWheelZoom();                     
        map.enableContinuousZoom();

        map.addControl(new GLargeMapControl())
        map.addControl(new GMapTypeControl());
        // map.addControl(new GScaleControl());
        map.addControl(new GOverviewMapControl());
        //map.setMapType(G_HYBRID_MAP);
        map.setCenter(new google.maps.LatLng(49.639494, 6.147441), 14);
        
		// Create our "tiny" marker icon
		var icon = new GIcon();
		icon.image = "http://www.gestcompro.com/favicon.ico";
		// icon.shadow = "";
		icon.iconSize = new GSize(16, 16);
		icon.shadowSize = new GSize(18, 16);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);
        
		// Aggiunge il marcatore sulle coordinate giuste
		var point1 = new google.maps.LatLng(49.639894, 6.147441);
		// var point2 = new google.maps.LatLng(44.989389, 12.220016);
		map.addOverlay(new GMarker(point1, icon));
		// map.addOverlay(new GMarker(point2, icon));
		
		// Creates a marker at the given point with the given number label
		function createMarker(point, testo) {
		  var marker = new GMarker(point, icon);
		  GEvent.addListener(marker, "click", function() {
		    marker.openInfoWindowHtml(testo);
		  });
		  return marker;
		}
        
        
        map.addOverlay(createMarker(point1, "<p><strong>GestComPro Europe</strong><br />Hilton Tower<br />12, rue Jean Engling<br />L-1466 Luxembourg</p>"))

      }
    }

    //]]>

