﻿function openMemLogin(theNo) {
    var intWidth = screen.availWidth;
    var intHeight = screen.availHeight;
    var strURL = "memLogin.aspx?theNo=" + theNo;
    var strF = "top=0,left=0,width=" + intWidth + ",height=" + intHeight + ",toolbar=no,menubar=no,location=no,directories=no,status=yes,copyhistory=no,scrollbars=yes,resizable=yes";
    var popWin = window.open(strURL, "memLogin", strF);
    if (popWin == null || typeof (popWin) == "undefined") {
        alert("您的瀏覽器已阻擋新視窗彈出,請允許本網站的新視窗彈出功能!");
    }
    return false;
}
//tpena don't need the following two functions
function openMemNew() {
    var intWidth = screen.availWidth;
    var intHeight = screen.availHeight;
    var strURL = "memNew.aspx";
    var strF = "top=0,left=0,width=" + intWidth + ",height=" + intHeight + ",toolbar=no,menubar=no,location=no,scrollbars=yes,directories=no,resizable=yes";
    window.open(strURL, "memNew", strF);
    return false;
}
function openMemTrans() {
    var intWidth = screen.availWidth;
    var intHeight = screen.availHeight;
    var strURL = "memTrans.aspx";
    var strF = "top=0,left=0,width=" + intWidth + ",height=" + intHeight + ",toolbar=no,menubar=no,location=no,scrollbars=yes,directories=no,resizable=yes";
    window.open(strURL, "memTrans", strF);
    return false;
}
function openEdu(strURL) {
    if (strURL != "") {
        var strF = "top=100,left=100,width=600,height=400,toolbar=yes,menubar=yes,location=yes,scrollbars=yes,directories=yes,resizable=yes";
        window.open(strURL, "eduWin", strF);
        return false;
    }
    else {
        alert("目前無關於繼續教育法規或積分管理系統的網站連結資料，故無法連至相關網站");
    }
}
