//<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(43.324588,-1.977684),15, G_SATELLITE_MAP);

// crea el icono		
	//var icon = new GIcon();
	//icon.image = "http://www.eltipografico.com/wp-content/themes/eltipografico/images/google-maps-logo.png";
	//icon.shadow = "http://www.eltipografico.com/wp-content/themes/eltipografico/images/google-maps-shadow.png";
	//icon.iconSize = new GSize(34, 34);
	//icon.shadowSize = new GSize(50, 34);
	//icon.iconAnchor = new GPoint(6, 20);
	//icon.infoWindowAnchor = new GPoint(5, 1);


        // Place a marker in the center of the map and open the info window
        // automatically
       // var marker = new GMarker(map.getCenter(), icon);
        var marker = new GMarker(map.getCenter());
        GEvent.addListener(marker, "click", function() {
		  marker.openInfoWindowHtml("<p><img src='/img/layout/d.png' />Grupo Xabide<br />Centro Kursaal Elkargunea<br />Avda. de la Zurriola, 1.</p>");
        });
        map.addOverlay(marker);
        //marker.openInfoWindowHtml(info);
      }
    }
//]]>