// テストサーバ用
// ポップアップウィンドウ（地図）
function mapWin (f,w,h,n) {
  nw = window.open("./map.html?/information/company/image/" + f, "pop" + n, "width=" + w + ", height=" + h + ", toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no,resizable=no");
  
  wx = w;
  wy = h;
  x  = (screen.availWidth  - wx) / 2;
  y  = (screen.availHeight - wy) / 2;
  
  nw.moveTo(x,y);
  nw.moveTo(x,y);
}

/*
// ポップアップウィンドウ（地図）
function mapWin (f,w,h,n) {
  nw = window.open("./map.html?./information/company/image/" + f, "pop" + n, "width=" + w + ", height=" + h + ", toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no,resizable=no");
  
  wx = w;
  wy = h;
  x  = (screen.availWidth  - wx) / 2;
  y  = (screen.availHeight - wy) / 2;
  
  nw.moveTo(x,y);
  nw.moveTo(x,y);
}
*/