
// ポップアップウインドウを表示
function subWin(URL) {
 window.open(URL, 'window1', "width=795,height=530,left=0,top=0,menubar=1,location=0,resizable=0,scrollbars=1,status=0,directories=0");
}
function subWin2(URL) {
 window.open(URL, 'window2', "width=910,height=500,left=0,top=0,menubar=1,location=0,resizable=0,scrollbars=1,status=0,directories=0");
}
function subWin3(URL) {
 window.open(URL, 'window3', "width=910,height=500,left=0,top=0,menubar=1,location=0,resizable=0,scrollbars=1,status=0,directories=0");
}
//subWinから親winを制御
function viewWin(wURL){
	if (opener.closed){
		newWin=window.open("","MainWindow"); 
		newWin.location.href=wURL;
		}
		else{
			opener.location.href=wURL;
		}
	}


