/*
Added 5/14/08 - Joey Burgett
*/
var message="Sorry, that function is disabled.\nContents & Graphics Copyright 2008 © Show Me Shepherds\nOur work is not Public Domain and should NOT be taken from this site.";
function click(e)
{
  if (document.all)
  {
    if (event.button==2||event.button==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    if (e.button==2||e.button==3)
    {
      e.preventDefault();
      e.stopPropagation();
      alert(message);
      return false;
    }
  }
}

if ((document.all) ? document.onmousedown=click : document.onclick=click); // 1st Case = MSIE, 2nd Case = FF
