//JAVASCRIPT FACIL · http://www.javascriptfacil.com // No right click v.3 //MENSAJES DE ALERTA PARA EDITAR var message="Function not available"; // 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;