var message="These pages will print without photos.\n\nAccording to Buddhist thinking, images of the Buddha, Pagoda or Teachers should\nbe given proper respect - they should not be put on the floor or thrown away.\n\nWe kindly request you do not use the photos in any way."; 
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;
}
else // for FF
{
  document.onclick=click;
}