function initialize_ymap(lat,long,map_div,zoom_value)
{
	// Create a map object   
	var map = new YMap(document.getElementById(map_div));

    // Add zoom control
    // Create latitude/longitude point
    var yPoint = new YGeoPoint(lat,long);
	map.addZoomLong(false);
	// Add the pan control
	//map.addPanControl();
	// Add map type control
	//map.addTypeControl();
	// Default map to satellite (YAHOO_MAP_SAT) -- other opts: YAHOO_MAP_HYB, YAHOO_MAP_REG
	//map.setMapType(YAHOO_MAP_REG);
	// Display the map centered on a geocoded location
	map.drawZoomAndCenter(yPoint, zoom_value);
	// Create a new marker for an geopoint
	var myMarker = new YMarker(yPoint);
	// Add a label to the marker
	myMarker.addLabel("<blink>İnterStone</blink>"); 
	//myMarker.addAutoExpand("Demeti");
	// Create some content to go inside the SmartWindow
	var myMarkerContent = "<h4>İnter Stone</h4>";
	// When the marker is clicked, show the SmartWindow
	YEvent.Capture(myMarker, EventsList.MouseClick,

	function() {
		myMarker.openSmartWindow(myMarkerContent);
	});

	// Put the marker on the map
	map.addOverlay(myMarker);
	//myMarker.openSmartWindow(myMarkerContent);
}

