//スクリーン中央にポップアップウィンドウを出す。書き方は<body>〜</body>内の<a href="javascript:opencenterwin('○○○.html','pop_up',幅, 高さ);"></a>で実行される
function opencenterwin( url, target,  wWidth, wHeight ){
	scWC = screen.availWidth / 2;
	scHC = screen.availHeight / 2;
	wOption = "toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=no,resizable=no,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWC - (wWidth / 2)) + ",top=" + (scHC - (wHeight / 2));
	window.open(url, target, wOption);
}

//普通のポップアップ。書き方は<body>〜</body>内の<a href="javascript:subWin01('○○○.html','pop_up');"></a>で実行される
function subWin01(url,target){
window.open(url,target,"width=260,height=400,scrollbars=no");
}
