
//<![CDATA[

    function mapload() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(window.document.getElementById("shibamap"));
        map.addControl(new GLargeMapControl());
//        map.setCenter(new GLatLng(37.4419, -122.1419), 13);


// GClientGeocoderを初期化
        geocoder = new GClientGeocoder();
        if (geocoder) {
            var address="金沢市保古3丁目183-2";
            geocoder.getLatLng(
              address,
              function(point) {
                  if (!point) {
                      alert(address + " not found");
                  } else {
                      map.setCenter(point, 14);
                      var marker = new GMarker(point);
                      map.addOverlay(marker);
          //            marker.openInfoWindowHtml(address);
		 map.openInfoWindowHtml(map.getCenter(),
             "<img src=\"/images/common/rogo_01.gif\" width=\"200\" height=\"50\"><img src=\"/images/company/company-map.jpg\" width=\"91\" height=\"70\">");
                  }
              }
            );
          }

      }
    }

    //]]>


