the "Check All" checkbox still shows even when there aren't any Pending members. Checking this box will cause a javascript error. To fix it so that the box does not show when there aren't any members do the following:
on line #303 find this code:
Response.Write " <td bgColor=""" & strHeadCellColor & """ align=""center""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Delete? <input type=""checkbox"" name=""CheckAll"" value="""" onClick=""checkAll(document.delMembers.id)""></font></b></td>" & vbNewLine & _
and replace it with this:
Response.Write " <td bgColor=""" & strHeadCellColor & """ align=""center""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Delete?"
if iMemberCount <> "" then
Response.Write " <input type=""checkbox"" name=""CheckAll"" value="""" onClick=""checkAll(document.delMembers.id)"">"
end if
Response.Write "</font></b></td>" & vbNewLine & _