//========================================================================
//  JavaScript共通部分 (jscript.js)
//    文字コード: EUC-JP
//    最終修正日: 2007.03.20
//========================================================================

// 確認メッセージ
	function kakunin(){
		if (confirm('本当にこの操作を続行しますか？')){
			return true;
		} else {
			return false;
		}
	}

// 原寸画像ポップアップ
	function DoPhotoWindowOpen(dir, data) {
		winopen=window.open(dir + "popup_images.php?data=" + encodeURIComponent(data), "", "width=" + screen.width + ", height=" + screen.width + ", scrollbars=yes, resizable=yes, status=no, title=no");
		winopen.focus();
		return;
	}

// [EOF]
