
            var map2; //サンスクエア東広島用34.394574,132.455467
//            var marker;

            function load2(keido,ido,size)
            {
                var pnt2 = new GLatLng(keido,ido);

                map2 = new GMap2(document.getElementById("map2"));
                map2.addControl(new GLargeMapControl());
                map2.setCenter(pnt2,size);

//                map.enableScrollWheelZoom();//マウスホイールで拡大・縮小を行う

//アイコンdaishin3用
                var icon2 = new GIcon();
                icon2.image = 'http://shichida-child.jp/classroom/img/common/shichida_daishin3.png';
                icon2.iconSize = new GSize(50, 38);
                icon2.iconAnchor = new GPoint(50/2, 38);
                icon2.infoWindowAnchor = new GPoint(50/2, 2);
                icon2.infoShadowAnchor = new GPoint(50, 50+8);
                var markeropts2 = new Object();
                markeropts2.icon = icon2;

//サンスクエア東広島
                var pnt2 =  new GLatLng(34.394574,132.455467);
                marker_daishin3 = new GMarker(pnt2,markeropts2);
                marker_daishin3.pnt=pnt2;
                var daishin3 = ('<p>【広島県民文化センター】<br />胎教コンサート<br />開催場所<br /></p>');

                marker_daishin3.html=daishin3;
		GEvent.addListener(marker_daishin3, 'click',function(){
			this.openInfoWindowHtml(this.html);
		}); 
                map2.addOverlay(marker_daishin3);

      }

