my friend grey found this code at some hells angeles sites. the code prevents you from using clicking on the right mouse to save photos displayed on the web page.visit these sites for more fun code examples
http://walk.to/crash http://dynamicdrive.com
Thanks. Sure enough, I went to the first one in your (massive) list and lifted the explicit code - follows: If they put up a simple barrier, we can find a way around it.
<script language="JavaScript"> <!--
/* Disable right mouse click Script ( By Crash @ http://walk.to/crash ) Submitted to and permission granted to Dynamicdrive.com to feature scriptin it's archive For full source code to this script and 100's more, visit http://dynamicdrive.com */
var message="Property of the HELLS ANGELS M.C."; function click(e) { if (document.all) { if (event.button==2||event.button==3) { alert(message); return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } } . . . . . </script>