function load() {
if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		
		
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(43.059,-2.439),4);

		// crear el icono sobre el mapa		
		var icon = new GIcon();
		icon.image = "../../_images/logo_ulma_map.png";
		icon.iconSize = new GSize(34, 22);
		//icon.shadow = "";
		//icon.shadowSize = new GSize(0, 0);
		icon.iconAnchor = new GPoint(0, 5);
		icon.infoWindowAnchor = new GPoint(11, 0);
		
		//crear el contenido de la ventana
		var address = '<img src="../../_images/logo_ulma_map2.gif" alt="ULMA PIPING" width="80" height="20" style="margin:0; padding:0; display:block;" /><p style="font:normal 10px/14px Verdana, sans-serif; display:block; margin:5px 0 0; padding:0; color:#58595b;"><strong style="color:#231f20;">ULMA FORJA, S.COOP</strong><br />B&ordm; Zubillaga, 3 - P.O. Box 14<br />20560 O&ntilde;ati (Gipuzkoa). Spain</p>';

        // 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(address); } );
        map.addOverlay(marker);
        //marker.openInfoWindowHtml(info);
      }
    }

