English
<!--Put the following code into the <head> area--> <SCRIPT LANGUAGE=javascript> function click() { alert('Disable your left-click copy!') } function click1() { if (event.button ==2) { alert('Right-click is prohibited~!') }} function CtrlKeyDown(){ if (event.ctrlKey) { alert('Improper copying will damage your system!') }} document.onkeydown=CtrlKeyDown ; document.onselectstart=click; document.onmousedown=click1; </SCRIPT> </script>