﻿// 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 openWindow(url){
    widthPx = 620;
    heightPx = 920;
    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=yes,status=no");
    popupW.focus();
}
