ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

	document.onkeydown = keyDown
	document.onkeyup = keyUp
	if (ns4) document.captureEvents(Event.KEYDOWN | Event.KEYUP)
function keyDown(e) {
if(ns4){
		var nKey=e.which; 
		var ieKey=0
		}
if(ie4){		
		var ieKey=event.keyCode;
		var nKey=0
		}
	   if (nKey==27 || ieKey==27  )   
	   		window.alert('Não é permitido pressionar a tecla ESC \n\n Webmaster: -=/\\/etßø¥=-')
   	    if (nKey==17 || ieKey==17  )   
   	    window.alert('Não é permitido pressionar a tecla Ctrl ou ALT Direito \n \nWebmaster: -=/\\/etßø¥=-')
	   		
}
function keyUp(e) {
	if (ns4) {
		var nKey=e.which; 
		var ieKey=0
	}
	if (ie4) {
		var ieKey=event.keyCode; 
		var nKey=0
	}
	   if (nKey==27 || ieKey==27 )   
	   		window.alert('Não é permitido pressionar a tecla ESC \n\nWebmaster: -=/\\/etßø¥=-')
}
function botmousedir()
{
if (event.button==2)
{
window.alert('Se você pressionou o botão direito do mouse\nou foi sem querer, ou quer copiar o código fonte \nou alguma figura.\n\nCaro visitante, existem 2 meios de fazer isso \nou me enviando um e-mail solicitando ou o outro\nque não pretendo revelar descubra sozinho!!!\n afinal você já foi curioso o bastante hehheh \nSe simplesmente quer uma figura pressione PrintScreen \n\n \n Assinado:  Webmaster (( -=/\\/etßø¥=- ))')
}
}
document.onmousedown=botmousedir

var message="Se você pressionou o botão direito do mouse\nou foi sem querer, ou quer copiar o código fonte \nou alguma figura.\n\nCaro visitante, existem 2 meios de fazer isso \nou me enviando um e-mail solicitando ou o outro\nque não pretendo revelar descubra sozinho!!!\n afinal você já foi curioso o bastante hehheh \nSe simplesmente quer uma figura pressione PrintScreen \n\n \n Assinado:  Webmaster (( -=/\\/etßø¥=- ))"
// Não edite !!!!!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

//setTimeout("clA(adId)",4500);
