﻿// 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 = 620;
    heightPx = screen.height;
    resizeWin();
    x = 0;
    y = 0;
    popupW = window.open(url,"popup","left="+x+",top="+y+",width="+widthPx+",height="+heightPx+",directories=no,resizable=yes,menubar=no,toolbar=no,scrollbars=yes,status=no");
    popupW.focus();
}

function popupWin02(url){
    widthPx = 860;
    heightPx = 484;
    resizeWin();
    x = (screen.width  - widthPx) / 2;
    y = (screen.height - heightPx) / 2;
    popupW02 = window.open(url,"popup02","left="+x+",top="+y+",width="+widthPx+",height="+heightPx+",directories=no,resizable=no,menubar=no,toolbar=no,scrollbars=no,status=no");
    popupW02.focus();
}
