Hi,
I'm using the 5.16 version with keypress.js on IE 6 web browser.
I've noticed a bug with the "F2" key when you're over some items in the menu.
The error given is "'_m[...].7' has a null value or is not an object"
It's seems it's fixed when you add a null test before the function getNextMainMenu() in keypress.js :
(I'm not good in javascript and I think there is a better code for this)
function getNextMainMenu(){
var a
for(a=_mainM;a<_m.length;a++){
if (_m[a] != null && _m[a][7] != null) {
if(a>_mainM&&_m[a][7]){
(...)
}