function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(41.39086, 2.17679), 15);
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());

        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon(G_DEFAULT_ICON);
       // baseIcon.image = "http://localhost/das08/images/layout/logo-das.png";
        baseIcon.image = "../img/ico-gmc.png";
        baseIcon.shadow = null;
        baseIcon.iconSize = new GSize(40, 40);
        //baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);

        // Creates a marker whose info window displays the letter corresponding
        // to the given index.
        function createMarker(point, index) {
          
          // Set up our GMarkerOptions object
          markerOptions = { icon:baseIcon };
          var marker = new GMarker(point, markerOptions);
/*
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("<h1>DAS Internacional SA</h1><p style='margin:0'>Plaza Dr. Letamendi, 1-2</p><p style='margin:0'>08011 Barcelona</p><p style='margin:0'><strong>Tel.</strong> 93 454 77 05</p><p style='margin:0'><strong>Fax</strong> 93 453 65 27</p><p style='margin:0'><a href='mailto:direccion.organizacion@das.es'>direccion.organizacion@das.es</a></p>");
          });
 */         return marker;
        }
	
		var coordDAS = new GLatLng (41.39086, 2.17679);
		 map.addOverlay(createMarker(coordDAS, 1));

      }
    }
