	var map;
        var dr;
 
        function initialize() {
            map = new GMap2(document.getElementById("map_canvas"));
            var gm = new GMarker(new GLatLng(41.012349, 28.977503), { title: "Hotel Sultania" });
            gm.bindInfoWindowHtml("<html><head></head><body><h4>Hotel Sultania</h4><br/>info@hotelsultania.com </body></html>");
            map.addOverlay(gm);
            map.setCenter(new GLatLng(41.012349, 28.977503), 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('/it/') > -1) {
                culture = "it";
            }
            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.012349, 28.977503 to:" + destination, { travelMode: G_TRAVEL_MODE_WALKING, locale: culture });

}
