
function Win(url){ 
window.open(url, "win","width=700,height=848,scrollbars=yes"); 
}

function Win2(url){ 
window.open(url, "win2","width=720,height=700,scrollbars=yes,resizable=yes"); 
} 

function Win3(url){ 
window.open(url, "win3","width=930,height=660,scrollbars=yes"); 
} 

function Win4(url){ 
window.open(url, "win4","width=470,height=500,scrollbars=yes"); 
} 

function Win5(url){ 
window.open(url, "win5","scrollbars=yes,location=yes,toolbar=yes,menubar=yes,resizable=yes,status=yes"); 
} 
function Win6(url){ 
window.open(url, "win6","width=700,height=800,scrollbars=yes"); 
}

function disp(url){
//メインウィンドウチェック
if(!window.opener || window.opener.closed){
//親ウィンドウが閉じられている場合
window.open(url, "disp1");
window.open.focus();
}else{
//親ウィンドウが開いている場合
window.opener.location.href = url;
window.opener.focus();
}
}


