    //<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		//map.addControl(new GLargeMapControl());
		//map.addControl(new GMapTypeControl());
		map.addControl(new GLargeMapControl());
		//map.addControl(new GMapType(G_HYBRID_MAP));
		map.addControl(new GMapTypeControl());		
		map.setCenter(new GLatLng(43.305912082,-1.976991891),13, G_SATELLITE_MAP);
		
	// crea el icono		
		var icon = new GIcon();
		icon.image = "/img/google-maps/mm_20_red.png";
		icon.shadow = "/img/google-maps/mm_20_shadow.png";
		icon.iconSize = new GSize(12, 20);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);

		//coloca los puntos en el mapa
			var markerZuatzu 	= new GMarker(new GLatLng(43.29782308258821, -2.0069360733032227), icon);
			var markerDeusto 	= new GMarker(new GLatLng(43.316981960697404, -1.9742345809936523), icon);




        GEvent.addListener(markerZuatzu, "click", function() {
			markerZuatzu.openInfoWindowHtml("Grupo Delta Ediciones Digitales<br />Parque Empresarial Zuatzu<br />Edif. Bidasoa, bajos 2 y 3<br />20018 – San Sebastián<br />Tel: 943 31 69 43 y 943 31 66 15<br />E-mail: grupodelta@grupodelta.net");
		});
        GEvent.addListener(markerDeusto, "click", function() {
			markerDeusto.openInfoWindowHtml("Grupo Delta Ediciones Digitales<br />Universidad de Deusto<br />Camino Mundaiz, s/n<br />20012 - San Sebastián<br />Tel.: 943 29 71 16<br />E-mail: deusto@grupodelta.net");
		});
        map.addOverlay(markerZuatzu);
        map.addOverlay(markerDeusto);
        //marker.openInfoWindowHtml(info);
      }
    }

    //]]>
