// グーグルマップ 桐ヶ丘デイホーム id = "gmap_kiri"
    var mapGgle;
    var ths_point, st_point, st2_point;
    var ths, st1, st2;

    var ths_options = new Object();
    var st1_options = new Object();
    var st2_options = new Object();

    var ths_is_displayed = 0;
    var st1_is_displayed = 0;
    var st2_is_displayed = 0;

    // 地図初期化
    function loadGmap()
    {
      if ( GBrowserIsCompatible() )
      {
        // 地図を初期化する
        mapGgle = new GMap2(document.getElementById("gmap_kiri"));
        //mapGgle.addControl( new GSmallMapControl() );     // ミニコントロール
        mapGgle.addControl( new GLargeMapControl() );       // ノーマルコントロール
        mapGgle.addControl( new GMapTypeControl() );        // 地図／衛星切り替えボタン
        mapGgle.addControl( new GOverviewMapControl() );    // 概要表示
        mapGgle.enableScrollWheelZoom();                    // スクロールホイールによるズームを有効にする
        mapGgle.enableContinuousZoom();                     // 滑らかなズームを有効にする

        // マーカー位置を設定する
        ths_point = new GLatLng(35.778834, 139.710207);
        st1_point = new GLatLng(35.712832749929525, 139.777250289917);
        st2_point = new GLatLng(35.71221424462096,  139.77649927139282);
            // st1_point,st2_point は使用していないため、座標未設定(09/04/09)

        // センター位置を設定する
        mapGgle.setCenter( ths_point , 15 );

        // マーカーオプションを設定する
        ths_options.clickable = true;
        ths_options.title     = "桐ヶ丘デイホーム"; 
        st1_options.clickable = true;
        st1_options.title     = "「赤羽都営住宅前」"; 
        st2_options.clickable = true;
        st2_options.title     = "JR赤羽駅西口"; 

        // マーカーを設定する
        ths       = new GMarker( ths_point , ths_options );
        st1       = new GMarker( st1_point , st1_options );
        st2       = new GMarker( st2_point , st2_options );

        // 目的地のマーカーを表示する
        mapGgle.addOverlay( ths );
        ths_is_displayed = 1;

        // 駅のマーカーを表示する
//        mapGgle.addOverlay( st1 );
//        st1_is_displayed = 1;
//        mapGgle.addOverlay( st2 );
//        st2_is_displayed = 1;
      }
    }

    function checkbox1Clicked()
    {
        if ( ths_is_displayed == 0 )
        {
            mapGgle.addOverlay( ths );
            ths_is_displayed = 1;
        }
        else
        {
            mapGgle.removeOverlay( ths );
            ths_is_displayed = 0;
        }
    }

    function checkbox2Clicked()
    {
        if ( st1_is_displayed == 0 )
        {
            mapGgle.addOverlay( st1 );
            st1_is_displayed = 1;
        }
        else
        {
            mapGgle.removeOverlay( st1 );
            st1_is_displayed = 0;
        }
    }

    function checkbox3Clicked()
    {
        if ( st2_is_displayed == 0 )
        {
            mapGgle.addOverlay( st2 );
            st2_is_displayed = 1;
        }
        else
        {
            mapGgle.removeOverlay( st2 );
            st2_is_displayed = 0;
        }
    }


