// JavaScript Document

//別ウィンドウを開く
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//親ウィンドウに表示
function parentDisp(url){
	if(!window.opener || window.opener.closed){ // メインウィンドウの存在をチェック
		window.alert('メインウィンドウがありません'); // 存在しない場合は警告ダイアログを表示
	}
	else{
		window.opener.location.href = url; // 存在する場合はページを切りかえる
	}

}

