﻿// window position
function getScreenWIDTH(){
    if(document.layers||document.all)
      return screen.width
  }

function getScreenHEIGHT(){
    if(document.layers||document.all)
      return screen.height 
  }

var winHeight =getScreenHEIGHT()/2;
var winWidth =getScreenWIDTH()/2;

function resizeWin(){
 var uName = navigator.userAgent;
 if (uName.indexOf("Safari") > -1) widthPx-=2;heightPx-=1
}

// popupwindow

// リンク先をhtmlコード内の引数で設定
function popupWin(url){
    widthPx = 1024;
    heightPx = 768;
    resizeWin();
    x = (screen.width  - widthPx) / 2;
    y = (screen.height - heightPx) / 2;
    popupW = window.open(url,"popup","left="+x+",top="+y+",width="+widthPx+",height="+heightPx+",directories=no,resizable=yes,menubar=no,toolbar=no,scrollbars=no,statusbar=no");
    popupW.focus();
}
function popupWin02(url){
    widthPx = 657;
    heightPx = 1024;
    resizeWin();
    x = (screen.width  - widthPx) / 2;
    y = (screen.height - heightPx) / 2;
    popup02W = window.open(url,"popup02","left="+x+",top="+y+",width="+widthPx+",height="+heightPx+",directories=no,resizable=yes,menubar=no,toolbar=no,scrollbars=yes,statusbar=no");
    popup02W.focus();
}