<!--
  document.oncontextmenu = rightProtect;
  function rightProtect(e) 
{ if (window.event) 
{ var srcEl = event.srcElement ? event.srcElement : event.target; }
  else 
{ var srcEl = e.srcElement ? e.srcElement : e.target; }
  if (srcEl.tagName.toLowerCase() == 'img') {
  window.alert(rightClickWarning);
  return false; }
  else 
{ return true; } }

var rightClickWarning = "Charles M. Herskowitz and Snorting Bull Photo, Inc. copyright all photos, images, and content appearing on the Snorting Bull Photo, Inc. photography web site http://www.SnortingBullPhoto.com and http://SnortingBull.smugmug.com. The site is intended for viewing only. No commercial or reproduction rights are granted for any of the images or design without the written permission of Charles M. Herskowitz and Snorting Bull Photo, Inc. and is prohibited under United States and International copyright laws. Copyright 2009 Charles M. Herskowitz and Snorting Bull Photo, Inc. All rights reserved.";
//-->

function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
}