//<![CDATA[
 
   function load(){
    
    if (GBrowserIsCompatible()) { 

      // A function to create the marker and set up the event window
    
      function createMarker(point,html) {
        var marker = new GMarker(point);
		maxWidth = 205;
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html, {maxWidth:maxWidth});
        });
        return marker;
      }

      // Muestra el mapa y su localizacion inicial 
      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GSmallMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(43.299385,-2.9570), 9);
    
      // Mostrar el marcador 
    
      var point = new GLatLng(43.3809,-2.956970);
      var marker = createMarker(point,'<div style="width:205px; font-size:90%"><strong>Casa Rural Ortulane</strong><br />Araba, 5<br />48610 URDULIZ <\/div>')
      map.addOverlay(marker);

    }
    
    // display a warning if the browser was not compatible
    else {
      alert("Lo sentimos, Google Maps no es compatible con su navegador");
    }
}

    // This Javascript is based on code provided by the
    // Blackpool Community Church Javascript Team
    // http://www.commchurch.freeserve.co.uk/   
    // http://econym.googlepages.com/index.htm

//]]>
	

