function launch_DialogSlideshowSummary() {
	showModalFadeLayer();
	var dialog = document.getElementById("dialogSlideshowSummary");
	loadPNGIntoDiv(dialog, "images/common/dialog/dialog_med_drop.png", true, "bottom right");
	
	if (is_safari) {
		document.getElementById("topslide").style.visibility = "hidden";
		document.getElementById("botslide").style.visibility = "hidden";
	}
	
	dialog.style.display = "block";
	disableNonDialogTabs(dialog, document.getElementById("dialogSlideshowSummary-cancel"));
}

function jump_DlgSummary(collId, collIdx, photoIdx, photoId) {
	callbackDialogSlideshowSummary(collId, collIdx, photoIdx, photoId);
	hide_DialogSlideshowSummary();
	return false;
}

function hide_DialogSlideshowSummary() {
	enableNonDialogTabs(document.getElementById("dialogSlideshowSummary"));
	document.getElementById("dialogSlideshowSummary").style.display = "none";
	hideModalFadeLayer();

	if (is_safari) {
	document.getElementById("topslide").style.visibility = "visible";
		document.getElementById("botslide").style.visibility = "visible";
	}
}

function cancel_DialogSlideshowSummary() {
	hide_DialogSlideshowSummary();
	return false;
}

