﻿function ilAlertNoTitle(content) {
    jAlert(content, '系统提示框');
}
function ilAlert(content, title) {
    jAlert(content, title);
}
function ilAlertNoTitleRedirect(content, url) {
    jAlert(content, '系统提示框', function(r)
    { if (r) { window.location.href = url; } }
   );

}
function ilAlertConfrimNoTitle(content, turl, furl) {
    jConfirm(content, '系统提示框', function(r) {
        if (r) {
            window.location.href = turl;
        }
        else {
            window.location.href = furl;
        }
    });
}
function ilAlertConfrim(content, title, turl, furl) {
    jConfirm(content, title, function(r) {
        if (r) {
            window.location.href = turl;
        }
        else {
            window.location.href = furl;
        }
    });
}
function ilAlertConfirBtn(content, btn1, btn2, turl, furl) {
    jConfirmBtn(content, '系统提示框', btn1, btn2, function(r) {
        if (r) {
            window.location.href = turl;
        }
        else {
            window.location.href = furl;
        }
    });
}

