function RightClickTrap(e)

{

var msg = "Unless otherwise noted, these images are\nCopyright (c) 2006 Maryland Delaware Rocketry Association.\nPlease contact MDRA before copying these images in whole or in part.";

if (document.layers)
  {
  if (e.which == 3)
    {
    alert(msg);
    return false;
    }
  }
else if (document.all)
  {
  if (event.button==2)
    {
    alert(msg);
    return false;
    }
  }
else
  {
  if (e.which == 3)
    {
    alert(msg);
    return false;
    }
  }
  
return true;
}

function ShowCopyright()

{
window.status="Copyright (c) 2006 by MDRA.  All rights reserved.";
}

function ClearCopyright()

{
window.status="";
}

function SetupRightClickCopyright()

{
if(document.images)
  {
  for(i=0;i<document.images.length;i++)
    {
    document.images[i].onmousedown = RightClickTrap;
    document.images[i].onmouseup   = RightClickTrap;
    document.images[i].onmouseover = ShowCopyright;
    document.images[i].onmouseout  = ClearCopyright;
    }
  }
  
if (document.layers)
  {
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown = RightClickTrap;
  } 
}

