    //<![CDATA[
    
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_div"));
        
        map.setCenter(new GLatLng(49.637556, 6.163417), 15);
        map.enableDoubleClickZoom();    
        map.enableScrollWheelZoom();                     
        map.enableContinuousZoom();

        map.addControl(new GLargeMapControl())
        map.addControl(new GMapTypeControl());
        map.addControl(new GOverviewMapControl());
        
        var icon = new GIcon();
        icon.image = "/img/structure/logo-iris-24x24.gif?rnd=2";
        icon.iconSize = new GSize(24, 24);
        icon.iconAnchor = new GPoint(12, 12);
        icon.infoWindowAnchor = new GPoint(12, 12);
        var point1 = new GLatLng(49.637556, 6.163417);
        map.addOverlay(new GMarker(point1, icon));
        
        function MYcreateMarker(iconnome, point, testo) {
    		  var marker = new GMarker(point, iconnome);
    		  GEvent.addListener(marker, "click", function() {
    		    marker.openInfoWindowHtml(testo);
    		  });
    		  return marker;
		    }
        
        
        map.addOverlay(MYcreateMarker(icon, point1, "<img class=\"img_flt_left noborder\" src=\"\/img\/structure\/logo-iris-24x24.gif\" alt=\"IRIS logo\" /><strong>IRIS PRODUCTIONS S.A.</strong><br /><em>Productions cinématographiques</em><br /><br />Bâtiment KB2, bureau 295<br />45, boulevard Pierre Frieden<br />L-1543 Luxembourg")) 
    
      }
    }

    //]]>
