function copykey(){
var tec=window.event.keyCode;  
var alt=window.event.altKey;
var ctr=window.event.ctrlKey;
if (tec==122) {event.keyCode=0; event.returnValue=false;}           // tecla: F11    = maximizado com ferramentas = DESABILITADO
if (ctr && tec==78) {event.keyCode=0; event.returnValue=false;}     // tecla: ctrl+N = abrir em nova janela = DESABILITADO
if (alt && tec==88) {window.open("javascript:desa()","_self","");}  // tecla: alt+X  = menu exibir = DESABILITADO+alert
if (alt && tec==68) {window.open("javascript:desa()","_self","");}  // tecla: alt+D  = menu editar = DESABILITADO+alert
if (alt && tec==65) {window.open("javascript:desa()","_self","");}  // tecla: alt+A  = menu arquivo = DESABILITADO+alert
if (ctr && tec==65) {window.open("javascript:desa()","_self","");}  // tecla: ctrl+A = selecionar todo texto = DESABILITADO+alert
}
document.onkeydown=copykey
function onmenu(){oncontextmenu='return false';}
document.onmousedown=onmenu
document.oncontextmenu=new Function("return false;")  // menu de contexto (botão direito)
document.onselectstart=new Function("return false;")  // selecionar texto (com o mouse)
//
function desa(){
desabilita=window.alert("Desculpe! Esta  tecla  encontra-se  desabilitada !        \n\n-----------  BlueStudio - Todos os direitos reservados.  -----------------");}
/*==========================================================
Adicione este arquivo no mesmo diretório da sua página.
Copie e cole o código abaixo em sua(s) página(s):
------------------------------------------------------------
<script language="JavaScript" src="oncopyright.js"></script>
==========================================================*/