
// 別ウィンドウオープン
// 引数：名前, URL, 横, 縦
function wopen(inName,inURL,inWidth,inHeight) {
    var ret = window.open(inURL,inName,'width=' + inWidth + ',height=' + inHeight + ',resizable=yes,scrollbars=yes,status=0');
    if (ret != null) {
        if (ret.opener == null) {
            ret.opener = self;
        }
    }
    // 前面へ表示
    ret.focus();
}

// カレントウィンドウクローズ
function wclose() {
    window.close();
}
