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


        // Place a marker in the center of the map and open the info window
        // automatically
        var marker = new GMarker(map.getCenter());
        GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml("<address><strong>Curva Rotulacion Integral S.L.</strong><br>Calle M, nave 8<br>31192, Valle de Aranguren (Navarra)<br>TEL.:(+34) 948 15 35 70</address>"); 
        });
        map.addOverlay(marker);
        //marker.openInfoWindowHtml(info);
      }
    }

    //]]>
	
	

