// あ
function fncDispDialog(title, content) {
	$('#dialog_content').html(content);
	$("#dialog").dialog({
		autoOpen: true, width: 500,
		title: title, modal: true
	});
}
function fncDispConfirm(title, content, fncOK) {
	$('#confirm_content').html(content);
	$("#confirm").dialog({
		autoOpen: true, width: 500,
		title: title, modal: true,
		buttons: {
			'OK': function () {
				$(this).dialog("close");
				fncOK();
				return true;
			},
			'CANCEL': function () {
				$(this).dialog("close");
				return false;
			}
		}
		
	});
}

