//Check All CheckBox
function chkAll(flag) {
    if (typeof(document.all.ID.length) == 'undefined') document.all.ID.checked = flag;
    else {
        for (var i = 0;i <= document.all.ID.length - 1;i++) {
            document.all.ID(i).checked = flag;
        }
    }
}

//Ò³ÃæÌø×ª
function changePage(fileName,page) {
    location.href = fileName + 'page=' + page;
}