function launch_DialogPhotoShare() {
	showModalFadeLayer();

	var dialog = document.getElementById("dialogPhotoShare");
	loadPNGIntoDiv(dialog, "images/common/dialog/dialog_med_drop.png", true, "bottom right");
	displayCharsAvailable("dialogPhotoShare-message",900,"newChars");
	dialog.style.display = "block";
	disableNonDialogTabs(dialog, document.getElementById("dialogPhotoShare-submit"));

	return false;
}

function submit_DialogPhotoShare() {
	document.getElementById("dialogPhotoShare-form").submit();
	return false;
}

function hide_DialogPhotoShare() {
	enableNonDialogTabs(document.getElementById("dialogPhotoShare"));
	document.getElementById("dialogPhotoShare").style.display = "none";
	hideModalFadeLayer();
}

function cancel_DialogPhotoShare() {
	hide_DialogPhotoShare();
	return false;
}
