﻿//---------■■■申込側　個人情報、辞書編集、最終ログイン日時表示処理■■■
var openWindow1;
var openWindow2;
var openWindow3;
//------------------------------------------------------------
// Window.Openで引数のURLを開く
// editfile            :申込側URL
//------------------------------------------------------------
function newWin1(arg) {
    w = 820;
    h = screen.availHeight;
    x = (screen.width - w) / 2;
    y = 0;
    openWindow1 = window.open(arg, "KojinJyoho", "left=" + x + "top=" + y + ",width=" + w + ",height=" + h + ",menubar=no, toolbar=no, scrollbars=yes");
}
function newWin2(arg) {
    w = 820;
    h = screen.availHeight;
    x = (screen.width - w) / 2;
    y = 0;
    openWindow2 = window.open(arg, "JisyoEdit", "left=" + x + "top=" + y + ",width=" + w + ",height=" + h + ",menubar=no, toolbar=no, scrollbars=yes");
}
function newWin3(arg) {
    w = 820;
    //h = screen.availHeight;
    h = 600;
    x = (screen.width - w) / 2;
    y = 0;
    openWindow3 = window.open(arg, "LastLoginDateTime", "left=" + x + "top=" + y + ",width=" + w + ",height=" + h + ",menubar=no, toolbar=no, scrollbars=yes");
}
function newWin4(arg) {
    w = 820;
    h = 600;
    x = (screen.width - w) / 2;
    y = 0;
    openWindow4 = window.open(arg, "RegFaq", "left=" + x + "top=" + y + ",width=" + w + ",height=" + h + ",menubar=no, toolbar=no, scrollbars=yes");
}
//JATA用
function newWin5(arg) {
    w = 820;
    h = 600;
    x = (screen.width - w) / 2;
    y = 0;
    openWindow5 = window.open(arg, "RegJata", "left=" + x + "top=" + y + ",width=" + w + ",height=" + h + ",menubar=yes, toolbar=yes, scrollbars=yes");
}
//JATASyo用
function newWin6(arg) {
    w = 820;
    h = 600;
    x = (screen.width - w) / 2;
    y = 0;
    openWindow6 = window.open(arg, "RegJataSyo", "left=" + x + "top=" + y + ",width=" + w + ",height=" + h + ",menubar=yes, toolbar=yes, scrollbars=yes");
}
//Umin
function newWin7(arg) {
    x = screen.width / 2;
    y = 0;
    openWindow7 = window.open(arg, "RegUmin", "left=" + x + "top=" + y + ",menubar=yes, toolbar=yes, scrollbars=yes, location=yes, status=yes, resizable=yes");
}
function CloseHtmlEditor(returntext) {
    //ftbエラー回避のためのダミーfunction
}
