Ok, just tested this.
SUGGESTED FIX:
In the members.asp page, line 43 - 51, change this:<script language="JavaScript">
function ChangePage(int){
if (int == 1) {
document.PageNum1.submit();
}
else {
document.PageNum2.submit();
}
}
</script>
to this:<script language="JavaScript">
function ChangePage(i){
if (i == 1) {
document.PageNum1.submit();
}
else {
document.PageNum2.submit();
}
}
</script>
Basically, the int variable was a reserved javascript keyword. So changing the variable to anything else would fix it. IE is smart enough to know that the int is a variable and not the reserved keyword.
Well, that's my hypothesis anyway.
- David