Hola, hice como me dijiste, pero no ha funcionado... :(
Código Javascript
:
Ver originalfunction my_onkeydown_handler() {
switch (event.keyCode) {
case 116 : // 'F5'
event.preventDefault = false;
event.keyCode = 0;
window.status = "We have disabled F5";
break;
}
}