<!--

function TrapRight(e)
{
  if (e.which == 3) return false;
}

function Init()
{
  if (document.layers)
  {
    document.layers.Blk1.captureEvents(Event.MOUSEDOWN);
    document.layers.Blk1.onmousedown = TrapRight;
  }
}
//-->