Right click on button and show an image

Hi everyone,
I was wondering if anyone knew how to use AS3 to allow a right click on a button whose instance name is go_btn
and navigate to the next frame where an image is displayed. I tried using thefollowing script:

go_btn.addEventListener(MouseEvent.RIGHT_CLICK, pasteInfo);
function pasteInfo(e:MouseEvent):void
{
gotoAndPlay(“26”);
}
Flash gave error message 1119: Access of possibly undefined property RIGHT_CLICK through a reference with static type Class.

Thanks,
Robert.