Thanks, that works fine

!
Here is the correct code for eyeOS:
Serach for
obj.oncontextmenu = function(e) {
in the file "eyeOSxxxxxxxxxx/extern/libs/eyeWidgets/BaseWidgets.js" and replace that line with these:
obj.oncontextmenu = function(e) {
if (IEversion > 0) {
e.cancelBubble = true;
e.returnValue = false;
} else {
e.preventDefault();
e.stopPropagation();
}