function initialize() {
       if (GBrowserIsCompatible()) {
         var map = new GMap2(document.getElementById("map_canvas"));
         map.setCenter(new GLatLng(32.798309313040015,130.7604306936264),16);
         if (map.continuousZoomEnabled() == true) {
           map.enableContinuousZoom();
         }
         map.enableDragging();
         map.enableScrollWheelZoom();
         map.setMapType(G_NORMAL_MAP);
         
         
         
         
         var points = [];
         pointOverLay = new GPolyline(points , "#ff0000" , 10);
         map.addOverlay(pointOverLay);

         var markers = [];
        baseIcon = new GIcon();
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);
        baseIcon.infoShadowAnchor = new GPoint(18, 25);

        var letteredIcon = new GIcon(baseIcon);
        letteredIcon.image = "http://www.google.com/mapfiles/markerA.png";
        markerOptions = { icon:letteredIcon };
        markers["A"] = new GMarker(new GLatLng(32.7983048038035,130.76042532920837) , markerOptions);
        GEvent.addListener(markers["A"] , "click" , function() {
          markers["A"].openInfoWindowHtml("ミリオンFXクラブ　熊本校<br \/><small>〒862-0922<br \/>熊本県熊本市三郎2-22-8 ウィル帯山南2F<br \/>TEL.050-3514-9859　FAX.096-288-9991<\/small>");
        });
        map.addOverlay(markers["A"]);


         
         map.setCenter(new GLatLng(32.798309313040015,130.7604306936264),16);
       }
     }