
/* ----- protect_images.js ----- */
var message="All images are copyright JMS Rugby.";
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) { //for IE
	document.onmousedown=click;
	document.onmouseup=click;
	if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	if (document.layers) window.captureEvents(Event.MOUSEUP);
	window.onmousedown=click;
	window.onmouseup=click;
	document.oncontextmenu=new Function("return false");
	}
else // for FF
{
  document.oncontextmenu=click;
}

