function ShowMapContentDiv(id){
	if($("map-popup") || $(".background-blackout")){
		HideMapContentDiv()
	}
	
	$.get("/resource/ajax/LoadMap.cfm",
		{MAP_ID: id},
		function(html){
			if (html.length) {
				$("body").append(html);
				$(".background-blackout")
					.fadeTo(500, 0.5)
					.height($("body").height())
					.queue(function(){
						var top = $("body").height()/3 - $("#map-details-" + id).height()/2;
						var left = $("body").width()/2 - $("#map-details-" + id).width()/2;
						
						$("#map-details-" + id)
							.css({top: top + "px",left: left + "px"})
							.show();
					});
			}	
		});
	
	return;
}

function HideMapContentDiv(){
	$(".map-popup")
		.hide()
		.queue(function(){
			$(this).remove();
			$(".background-blackout").remove();
		});
					
	return;
}

