Nothxkbi
Banned
Alright I'm often coming across things we could all use so just gonna dump them here when I find them with a small description of what it does. 
Came across this today, its pretty self explanatory, basically protects all the images on your site from being copied.
Came across this today, its pretty self explanatory, basically protects all the images on your site from being copied.
Code:
</script>
<script language="JavaScript" src="scripts/overlib.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
<!--
function protect()
{ if (event.button==2 || event.button==3)
{ alert("All images and content of this website are copyright or licensed to\nJoe Soap and Company.");
return false;
}
else
{ return true;
}
}
function trap() {
if (document.images) {
for (i=0;i<document.images.length;i++){
document.images[i].onmousedown = protect;
}
}
}
//-->
</script>