        var map;
        var dr;

        function initialize() {
            map = new GMap2(document.getElementById("map_canvas"));
            var gm = new GMarker(new GLatLng(41.012289,28.977578), { title: "Hotel Yasmak Sultan" });
            gm.bindInfoWindowHtml("<html><head></head><body><img src=\"http://t1.gstatic.com/images?q=tbn:MSRVKtsokgksLM:http://www.venere.com/img/hotel/9/5/0/9/209059/image_hotel_exterior_frontview_1.jpg\"  /><h4>Hotel Yaşmak Sultan Istanbul</h4><br/>Ebusuud Cad. 14 - 20, İstanbul, 34410<br/>34110 - Tel : +90 (212) 528 1343<br/>info@hotelyasmaksultan.com </body></html>");
            map.addOverlay(gm);
            map.setCenter(new GLatLng(41.012289,28.977578), 16);
            map.setUIToDefault();
            dr = new GDirections(map, document.getElementById("result"));
        }

        function GoToDirection(value, d, destination) {

            d.clear();
            var culture = "en";
            if (window.location.href.indexOf('/tr/') > -1) {
                culture = "tr";
            }
            else if (window.location.href.indexOf('/en/') > -1) {
                culture = "en";
            }
            else if (window.location.href.indexOf('/es/') > -1) {
                culture = "es";
            }

            // Topkapi :
            d.load("from:41.012289, 28.977578 to:" + destination, { travelMode: G_TRAVEL_MODE_WALKING, locale: culture });

        }
