// JavaScript Document
function click() {return false;}
function click1() {if (event.button==2) {return false; }}
function CtrlKeyDown(){if (event.ctrlKey) {return false; }}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;
document.oncontextmenu=function(){return false;}
document.onmousedown=function(){if(event.button==2)return false;}

