//JAVASCRIPT FACIL · http://www.javascriptfacil.com
// No right click v.3
//MENSAJES DE ALERTA PARA EDITAR
var message="El texto perteneciente a esté documento está registrado en el Registro Territorial de la Propiedad Intelectual de Madrid";
// A PARTIR DE AQUÍ NO EDITAR
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 1) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
