    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_div"));
        
        map.setCenter(new GLatLng(49.5896200820805, 6.14139770539384), 15);
        map.enableDoubleClickZoom();    
        map.enableScrollWheelZoom();                     
        map.enableContinuousZoom();

        map.addControl(new GLargeMapControl())
        map.addControl(new GMapTypeControl());
        // map.addControl(new GScaleControl());
        map.addControl(new GOverviewMapControl());
        
        var icon = new GIcon();
        icon.image = "http://www.tol.lu/img/structure/googlemap_tol_icon.gif?rnd=2";
        icon.iconSize = new GSize(50, 32);
        icon.iconAnchor = new GPoint(25, 16);
        icon.infoWindowAnchor = new GPoint(25, 16);
        var point1 = new GLatLng(49.5896200820805, 6.14139770539384);
        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, "<strong>TOL</strong><br /><em>Th&#233;&#226;tre Ouvert Luxembourg</em><br />143, route de Thionville<br />Luxembourg-Bonnevoie")) 
    
      }
    }

    //]]>

