document.onselectstart=function(){return false;}
document.oncontextmenu=function(){return false;}
document.onmousedown=function(){
  if(event.button==2)return false;
} 
document.onkeydown=function(){
  if(event.ctrlKey)return false;
}

