// adapted from a script from DigitalDutch.com
function disableRightClick(anImage) {

  anImage.oncontextmenu = function(e) {
    return false;
  }

  anImage.ondragstart = function () { return false; }
}