
         function notallowed() {
         document.oncontextmenu = function() {return false;};
         }
         function allowed() {
         document.oncontextmenu = function() {return true;};
         }

