// JavaScript Document
function vwOpenWin(url){
	if(!window.opener || window.opener.closed){ // 親ウィンドウの存在をチェック
		window.opener=window.open(url,"mainvw","directions=1,location=1,menubar=1,scrollbars=yes,status=1,toolbar=1,resizable=1").focus();
	}else{
	  if (navigator.userAgent.indexOf("Firefox") != -1) {
	  	//window.opener.location.href = url; // 存在する場合はページを切りかえる
	  	//window.opener.focus();
	  	window.opener=window.open(url,"mainvw","directions=1,location=1,menubar=1,scrollbars=yes,status=1,toolbar=1,resizable=1").focus();
	  	
	  }else{
	  	opener=opener.top;
	  	window.opener.top.location.href = url;
	  	window.opener.top.focus();
	  }
	}
}