Image relative protections
********************************************
Free Html/JavaScript provided by ©2004-VB'Breizh
**Updated (10/22/2004) Compatibility :
...Some tips you can easily use to protect images on your website...
- Use thumbnails with low-resolution images that viewers won't be able to enlarge.
- Don't allow printscreen copy : 
- Place a copyright notice on your pictures or on your web page.
No right click :
Code :
Hide the picture onmouseover event :
Code :
Cover the picture with a transparent gif : (html)
Code :
Disable the Image Toolbars :(html)
Code :
IE (all pictures) :<head><META HTTP-EQUIV="imagetoolbar" CONTENT="no"></head>
Netscape (all pictures) :<head><META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0"></head>
IE/NN individually : add GALLERYIMG="no" in the <IMG> tag :
<div name='div3' id='div3' style='position: relative; width: 30px; height: 60px;'>
<img id='pic3' src='../gif/bzh05.gif' width=30px height=60px border=0 alt='My Picture' galleryimg='no'>
</div>
Comment, question ?