//基本
function MM_openBrWindow(theURL,winName,features) { //v2.0
  newWin = window.open(theURL,winName,features);
newWin.focus()
}


//携帯サイト
function mobile_openBrWindow(URL) { //v2.0
  newWin = window.open(URL,'mobile','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=450,height=500');
newWin.focus()
}


//ログインについて
function at_openBrWindow(URL) { //v2.0
  newWin = window.open(URL,'at','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=500,height=400');
newWin.focus()
}