function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("                 PROTECCIÓN ACTIVADA (mouse)\n\nEsta función está deshabilitada. Consulta al webmaster\n\nResolución mínima de 800x600. © Copyright 1999-2003 DeAtH's Corp.");
return false;
}
return true;
}

function keypressed() {
alert("               PROTECCIÓN ACTIVADA (teclado/scroll)\n\nEsta función está deshabilitada. Consulta al webmaster\n\nResolución mínima de 800x600. © Copyright 1999-2003 DeAtH's Corp.");
}
document.onmousedown=right;
document.onkeydown=keypressed;
