Script
You will need to copy this script and paste it into your HTML.
<!-- This script has been
in the http://www.javascripts.com Javascript Public
Library! --> <script language=JavaScript> <!-- var message="ENTER YOUR MESSAGE HERE"; 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; // --> </script> <!-- Simba says Roar. --> |