function MM_openBrWindow(theURL,winName,features) { //v2.0
  //window.open(theURL,winName,features);
  location.href=theURL;
}

function navi_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


// ########## Sub Window Open
// <a href="xxx.html" target="xxx" onclick="WinOpen('','xxx','scrollbars=yes,location=no,menubar=yes,directories=no,resizable=yes,width=560,height=450');">
var newwin;
function WinOpen(URL,WN,F){
	if(newwin){
		if(!newwin.closed){
			newwin = window.open(URL,WN,F);
			newwin.focus();
		}else{
			newwin = window.open(URL,WN,F);
		}
	}else{
		newwin = window.open(URL,WN,F);
	}
}