function doEdit() {
    var intCount = checkCount();
    var checkvalue;
    if (intCount <= 0) {
        alert("请选择一条记录!");
        return;
    } else if (intCount > 1) {
        alert("请只选择一条记录!");
        return;
    }
    if (document.deptlist.deptID.length>1) {
        for (i = 0; i < document.deptlist.deptID.length; i++) {
            if (document.deptlist.deptID[i].checked) {
                checkvalue = document.deptlist.deptID[i].value;
            }
        }
    } else {
        if (document.deptlist.deptID.checked)
            checkvalue = document.deptlist.deptID.value;
    }
    document.deptlist.action = "<%=contextPath%>/deptManage.htm?actionType=edit";
    document.deptlist.submit();
}