Shields Up

I don't think there is a way to totally prevent anyone from copying the contents of your page but heres a little something that prevents anyone from copying the contents of your page by dragging the mouse.

Try to highlight or copy any single object on this page.

As you can see you cannot €:-)

This is done by creating a layer large enough to cover the entire contents of the document.
The key is to give the layer a clear background image.

Finally just in case other layers are used in the page, give the Shields Up layer a high z-index value of say ... 50

Note:
Anything that requires user action ie. links or buttons must be set at a higher z-index value than the shield layer or they won't work. This also means they will be above the shield.

This In No Way Guarantees The Security Of Your Contents.
It Is Still Possible To Copy The Entire Contents Of Your Page By Other Means.

The shield ends here to allow you to copy the script below

<script type="text/javascript">
<!--
function raiseShields(){ document.getElementById("shield").style.width=document.body.scrollWidth document.getElementById("shield").style.height=document.body.scrollHeight } // --> </script> <div id="shield" style="position:absolute;left:0;top:0;z-index:10;background-image:url(blank.gif)"></div>