Please visit our sponsor
UNKNOWN //************************************** // Name: Catch Right Mouse click on webpage // Description:Protect your sites from people saving your images by catching the right click button and displaying a message box. // By: X-Cozen // // // Inputs:None // // Returns:None // //Assumes:None // //Side Effects:None //This code is copyrighted and has limited warranties. //Please see http://www.Planet-Source-Code.com/xq/ASP/txtCodeId.1735/lngWId.2/qx/vb/scripts/ShowCode.htm //for details. //************************************** <script language="javascript">function click() {if (event.button==2) { alert('Nice Try !') } } document.onmousedown=click </script>