    //<![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.324954946678154, -1.983727455171902),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);
        GEvent.addListener(marker, "click", function() {
		  //marker.openInfoWindowHtml("<img src=\"http://www.eltipografico.com/wp-content/themes/eltipografico/images/zentek.jpg\" style=\"float: left; margin-right: 15px;\" /><address><strong>El Tipo Gr&aacute;fico</strong><br />Avda. Pasai San Pedro 19, 2 12<br />20017  Donostia</address><p><span class=\"telefono\">Tel. 943 39 20 20</span></p>");
		  marker.openInfoWindowHtml("<address><strong>El Tipo Gr&aacute;fico</strong><br />C/ Soraluze 3<br />20003  Donostia</address><p><span class=\"telefono\">Tel. 943 39 20 20</span></p>");
        });
        map.addOverlay(marker);
        //marker.openInfoWindowHtml(info);
      }
    }

    //]]>

