Suppress/disable IE6 shortcut?

It took a bit of doing to get a script that suppresses hotkeys in IE, but I've got it.The script disables the pop-up Open window when I run it in Internet Explorer, but does nothing when I add it to my Lectora 2006 module as an external html object (other). Other scripts that I've added to modules in the past have worked just fine. (Again, I publish modules to html...on our intranet.) Could someone take a look and tell me why this script might not be working in Lectora when it works just fine in IE?Here is the script:document.onkeydown = funDown;var lastKeyDown; function funDown() { if(window.event && window.event.keyCode == 17) { // Capture and remap ctrl // undefined window.event.keyCode = 555; //access denied error here if uncommented lastKeyDown = 'Ctrl'; return false; } if(window.event && window.event.keyCode == 76) { // Capture and remap L if(lastKeyDown == 'Ctrl') { //alert('Ctrl+L has been disabled'); // window.event.keyCode = 555; //access denied error here if uncommented //trainingFunctionA(); undefined } } if(window.event && window.event.keyCode != 76 && window.event.keyCode != 17) { lastKeyDown='Not Ctrl or L'; } }function trainingFunctionA() { alert("Training Function called.");}Johnny

Discussions have been disabled for this post