        function initialize_ymap()
        {
            // Create a map object
            var map = new YMap(document.getElementById('ymap'));
          // Create a new marker for an address
          var myMarker = new YMarker("61-63 rue Jean Jaurès 17300 Rochefort");
          // Create some content to go inside the SmartWindow
          
          // Create latitude/longitude point
          var yPoint = new YGeoPoint(45.935124, -0.95963);
          // Create a new marker for an address
          var myMarker = new YMarker(yPoint);
            // Display the map centered on a geocoded location
            map.drawZoomAndCenter(yPoint, 6);
            // Add map type control  
      map.addTypeControl();  
      // Add zoom control
          map.addZoomLong();
          // Add the pan control
          map.addPanControl();
          // Add a label to the marker
          myMarker.addAutoExpand("Cabinet Phisa");    
          // When the marker is clicked, show the SmartWindow
          YEvent.Capture(myMarker, EventsList.MouseClick,
            function() {
                myMarker.openSmartWindow(myMarkerContent); 
            });
          // Put the marker on the map
          map.addOverlay(myMarker);
        }
