// JavaScript Document

// Disable Right Click
function disableRightClick(e)
{
  var message = "Our page content is copyright \n to us and various other parties. \n Please contact us if you \n wish to use content from \n this site. We can be contacted \n through the contact us page .";   
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    alert(message);
    return false;
  }
}
disableRightClick();



 
