//新規ウィンドウを生成
function openWin(url) {
    return false;
}
var win = window;
function openWin(url) {
   if ((win == window) || win.closed) {
      win = open(url, "_blank", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=645,height=650");
   } else {
      win.focus();
   }
   return(false);
}

function popup(html) {
	SubWindow=window.open(html,"popup","width=680,height=650,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1");
	SubWindow.focus();
}

function popup_sp(html) {
	SubWindow=window.open(html,"popup_sp","width=800,height=650,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1");
	SubWindow.focus();
}