// This software code is owned by 
// by OutABounds Software
//
// Copyright 1999-2005 all rights reserved.

// None of this script may be redistributed or sold
// without the authors express consent.
// Violations of copyright will be prosecuted.

// ********************************************
// Web Site Management Routines               *
// ********************************************
var mymessage = "All content copyright R Thomas Enterprise Inc. 2005-2008. All content has been marked.";

  function disableRightClick(btnClick)
  {
    if (navigator.appName == "Netscape" && btnClick.which == 3) // check for netscape and right click
    {   
      alert(mymessage);
      return false;
    }
    else if (navigator.appName =="Microsoft Internet Explorer" && event.button == 2)  // for IE and Right Click
    {
      alert(mymessage);
      return false;
    }
  }
