<!--

//DISABLE RIGHT CLICK

var message = "Sorry, that function is disabled.\n\n";
message += "This page is copyrighted, and ";
message += "all content is protected."; 

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;


//DISABLE TEXT SELECTION
	
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
   target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
   target.style.MozUserSelect="none"
else //All other route (ie: Opera)
   target.onmousedown=function(){return false}
target.style.cursor = "default"
}


//DISABLE TEXT SELECTION PLUS!	

// Internet Explorer:
if (document.all)
  document.onselectstart =
    function () { return false; };

// Netscape 4:
if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown =
    function (evt) { return false; };
}

// Netscape 6:
document.onmousedown = function () { return false; };


-->	