<script> document.oncontextmenu = function(e) { var target = (typeof e !="undefined")? e.target: event.srcElement if (target.tagName == "IMG" || (target.tagName == 'A' && target.firstChild.tagName == 'IMG')) { alert('This image is protected by legal copyright and is the property of its owner'); return false; } } </script>