You may wish to include the phrase "These comments protected by MT-Blacklist" on your comments templates.
Here's a piece of code that you can use to make it harder to lift your photos and your articles from the site. You need to install it in the head of each template. I leave it out of the comments and trackback. What it does is disable the right mouse button and display a message about fair use:
<script language="javascript" type="text/javascript">
<!--
var text='This author practices fair use and requests that you do the same. For
more information, visit http://www.copyright.gov/fls/fl102.html';
function NSclick(ev) {
if (ev.which != 1) {
alert(text) // You can delete this line if you want
return false
}
}
function MSIEclick() {
if (event.button==2) {
alert(text)
}
}
if (navigator.appName == "Microsoft Internet Explorer") {
document.onmousedown=MSIEclick;
} else if (navigator.appName == "Netscape") {
document.captureEvents(Event.MOUSEDOWN)
document.onmousedown = NSclick;
}
// -->
</script>
Go to Pax Nortona to see how it works.