//　サブウィンドウオープン

function MM_openBrWindow(theURL,winName,features) { //v2.0
  subWin = window.open(theURL,winName,features);
  subWin.opener=top;
  subWin.focus();
}

//　メインウィンドリロード

function viewWin(wURL) {
	if(opener){
		opener.location.href = wURL;
		opener.focus();
		}
	else{
		subWin = window.open(wURL,"newwin","");
		subWin.opener=top;
		subWin.focus();
		}
}