    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(38.315094, 26.637897), 13);
        map.setMapType(G_SATELLITE_MAP);
		//G_NORMAL_MAP displays the default road map view.
//G_SATELLITE_MAP displays Google Earth satellite images. *
//G_HYBRID_MAP displays a mixture of normal and satellite views.*
//G_DEFAULT_MAP_TYPES contains an array of the above three types, useful for iterative processing.
//G_PHYSICAL_MAP displays a physical map based on terrain information.
		
		map.setUIToDefault();
      }
	  var point = new GLatLng(38.315094, 26.637897);
    map.addOverlay(new GMarker(point));



    }
