function loadMapaGoogle() {
		//Inicializamos el mapa
		var map = new GMap2(document.getElementById("mapa"));
		map.addControl(new GMapTypeControl());
		map.addControl(new GLargeMapControl());
		map.setCenter(new GLatLng(43.324806, -1.825300), 14);

		// Configuramos el icono a mostrar
		var icon = new GIcon();
		icon.image = "/img/all/icono_flecha.png";
		icon.shadow = "/img/all/icono_flecha_sombra.png";
		icon.iconSize = new GSize(47, 42);
		icon.shadowSize = new GSize(47, 42);
		icon.iconAnchor = new GPoint(15, 38);
		icon.infoWindowAnchor = new GPoint(30, 0);

		//Anadimos el evento al hacer clic
		var posicion_flecha = new GLatLng(43.324806, -1.825300);
		var marker_flecha = new GMarker(posicion_flecha,icon);
		GEvent.addListener(marker_flecha, "click", function() {
			marker_flecha.openInfoWindowHtml('<strong>Metallied Powder Solutions S.A.</strong><br />Polígono Bidaurre-Ureder Nave 10,<br />Ventas 45 B, 20305 Irun');
		});
		map.addOverlay(marker_flecha);
	}