function quick_sd_map (wid,hei,lon,lat,lvl,info,control) {
	$("#QuickSDMap").css({position:"absolute"});
	$("#QuickSDMap").width(wid);
	$("#QuickSDMap").height(hei);
	var myMap = new JMap(document.getElementById("QuickSDMap"));
	var myLonLat = new JLonLat(lon,lat);
	if (lvl == "") {
		lvl = 12;
	}
	myMap.setCenter(myLonLat,lvl,J_AUSWAY_MAP);

	var point = new JLonLat(lon,lat);
	var icon = new JIcon(J_DEFAULT_ICON);
	var markerOptions = {icon:icon, draggable:false};
	var marker = new JMarker(point,markerOptions);
	myMap.addOverlay(marker);

	if ((info != undefined) && (info != "")) {
		info = "<pre class='SubTitle'>"+info+"</pre>";
		marker.openInfoWindow(info);
		myMap.Event.addListener(marker,"click",marker.openInfoWindow);
		myMap.panBy(new JPoint(20,60));
		if (control != false) {
			control = true;
		}
		if (control) {
			var offset = new JSize(5,5);
			var ctrlPosition = new JControlPosition(J_ANCHOR_TOPRIGHT, offset);
			var lmc = new JLargeMapControl();
			myMap.addControl(lmc,ctrlPosition);
		}
	}
}

