function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function disp(url){
if(!window.opener || window.opener.closed){ // メインウィンドウの存在をチェック
window.location.href = url;
}
else{
window.opener.location.href = url; // 存在する場合はページを切りかえる
}
}
