Scripts - No Mouse Clicks

Purpose
This coding prevent people from right or left-clicking on your page, which can prevent them from clicking on your images and stealing them.

Instructions
Copy and paste the coding onto your site and change the orange colored message to suit your need.

No Right Click
<SCRIPT language="javascript">
function click() {
if (event.button==2) {
alert('Sorry, theft is not permitted here!')
}
}
document.onmousedown=click
</SCRIPT>

No Left Click
<SCRIPT language="javascript">
function click() {
if (event.button==1) {
alert('Sorry, theft is not permitted here!')
}
}
document.onmousedown=click
</SCRIPT>



Hosted By: ISPrime... The Ultimate Hosting Company!
© 2000-2007 Adult Webmaster World. All Rights Reserved.