////Right Mouse Button /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// var utility = { checkRClickYN : function() { document.oncontextmenu = new Function ("return false"); document.ondragstart = new Function ("return false"); document.onselectstart = new Function ("return false"); } }; if (window.addEventListener) window.addEventListener("load", utility.checkRClickYN, false); else window.attachEvent("onload", utility.checkRClickYN); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////