function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/////////日本語アラート表示1
function MM_openBrWindow1(msg,gourl) { //v1.0
  ret="";
  ret=confirm(msg);
  if(ret){
	self.location.href  = gourl;
	}
}
/////////日本語アラート表示2
function MM_openBrWindow2(msg,gourl,winName,features) { //v1.0
  ret="";
  ret=confirm(msg);
  if(ret){
	window.open(gourl,winName,features);
	}
}
/////////日本語アラート表示3
function MM_openBrWindow3(msg,gourl) { //v1.0
  ret="";
  ret=confirm(msg);
  if(ret){
	top.location.href  = gourl;
	}
}
/////////日本語アラート表示4
function MM_openBrWindow4(msg,gourl) { //v1.0
  ret="";
  ret=confirm(msg);
  if(ret){
	window.open(gourl);
	}
}

//リンク先データを渡すフレーム設定用html英語版_top型
function sendData_etop(msg,sendURL,sentURL)
{
  ret="";
  ret=confirm(msg);
  if(ret){
	sData = escape(sentURL);
	URL= sendURL + "?"+ sData;
	top.location.href  = URL;
	}
}

//リンク先データを渡すフレーム設定用html
function sendData(sendURL,sentURL)
{
	sData = escape(sentURL);
	URL= sendURL + "?"+ sData;
	MM_openBrWindow(URL,'origin','');
}
