//単発窓POPUP
function win_sub01(url){
	wid=700
	hei=550
	//↓オプション設定
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	wOption = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=" + wid + ",height=" + hei + ",left=" + (scWidthCenter - (wid / 2)) + ",top=" + (scHeightCenter - (hei / 2));
	winname = Math.round(Math.random() * 1000000);
	//↑オプション設定
	window.open(url, winname, wOption);
}
