<!--
function AltDown() {
if (event.keyCode==122) {
alert("Desculpe-me, mas a tecla F11 não funciona nesta página.");
event.returnValue=false;
event.keyCode=0; }
if (event.keyCode==116) {
alert("Desculpe-me, mas a tecla F5 não funciona nesta página.");
event.returnValue=false;
event.keyCode=0; }
if (event.altKey)   { alert("Desculpe-me, mas a tecla Alt não funciona nesta página."); }
if (event.ctrlKey)  { alert("Desculpe-me, mas a tecla Ctrl não funciona nesta página."); }
var isnn,isie
if(navigator.appName=='Microsoft Internet Explorer') { isie=true; } 
if(navigator.appName=='Netscape') { isnn=true; } 
function right(e) { 
if (isnn && (e.which == 3 || e.which == 2 )) return false;
else if (isie && (event.button == 2 || event.button == 3)) { alert("Desculpe-me, mas o botão direito não funciona nesta página."); return false; } 
return true; }
if (document.layers) window.captureEvents(Event.MOUSEDOWN); 
if (document.layers) window.captureEvents(Event.MOUSEUP); 
document.onmousedown=right; 
document.onmouseup=right;
//-->