// JavaScript Document
document.onselectstart=function(){return false;}
document.oncontextmenu=function(){return false;}
document.onkeydown=function(){
      if(event.ctrlKey)return false;
}

