Scripts
If you want to use my graphic, there are some scripts that I want you to use,
so that the graphics are safe, and can not be downloaded, moved, or copied
when you have it on your site.

Here are some protective scripts that you can copy and ad to your site.
Only copy the pink text

All of this scripts can be found at
Dynamic Drive

*No rightclick script
This script shall be added after the <HEAD> in the code

<script language="JavaScript">

<!--
// No rightclick script.
// Find more great scripts and applets at the JavaFile!
// http://www.javafile.com
// Do not delete this header!

var message="Dont steal my graphic. No download here!"; // Put your message for the alert box between the quotes.

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->

</script>
<!-- End of no right click script -->

 

 

*Drag and drop provention script
This script shall be added after the <HEAD> in the end of your  html page

<span oncontextmenu="return false;" ondragstart="return false";>

 


*Image toolbar disable script
This script shall be added after the <HEAD> in the code

<META HTTP-EQUIV="imagetoolbar" CONTENT="no">