This series of scripts will prevent right click, prevent framing your site and prevent copy and paste by selecting images or text with IE. All do not work if user is using Firefox and probably Netscape. A good place to put it, is in any unused banner location such as headers 1-3 or footers 1-3. It won't show but will load on every page. I didn't write them and they are available on the web, but will take mucho time to find and test them. Enjoy.

<SCRIPT LANGUAGE="JavaScript">
<!--
// frame-busting script
setTimeout ("changePage()", 0);
function changePage()
{
if (self.parent.frames.length != 0)
self.parent.location=document.location;
}
//-->
</SCRIPT>
<SCRIPT language=JavaScript><!--// No rightclick script v.2.5// (c) BAI//BAI// Don't delete this header!
var message="Copyright! It is prohibited by US federal copyright law to publish, broadcast, fax, mail, duplicate, photocopy, upload, download, transmit, distribute, or redistribute any portion of this web site without our express permission. All Rights Reserved.";
// 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;
// --></FONT></SCRIPT>
<body bgcolor="#FFFFFF" ondragstart="return false" onselectstart="return false">