Well ive thought of one or two ways around this
One being if they are finding and stealing your images from your actual ebay link or shop, you can add this to every product / shop html page that your products are on
Code:
<html>
<body>
<script language=JavaScript>
<!--
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onMouseDown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onMouseDown=clickIE4;
}
document.onContextMenu=new Function("alert(message);return false")
// -->
</body>
</html>
This will disable right click
Another would be to add watermarks :P using htaccess
http://forums.oscommerce.com/index.php?showtopic=111019
Sorry for the post of another forum but it gives good answers to most of the problems installing this.
It would majorly stop all picture theives if you tagged your images with your email address or "Find it cheapest at domain.com"
Hope this helped 
|