Mouse button Help

Hi,

Can I make a mouse button work like nextframe and previusframe.
I need mouse function like mouseup or mouse release button.

left mouse button --> nextframe
right mouse button --> previusframe
Flash buttons must work at same time

I have this code, but is to fast.

var flag:Boolean=true;

stop();
this.onEnterFrame = function(){
if(flag){
if (Key.isDown(1)){
nextFrame();
}
if (Key.isDown(2)){
prevFrame();
}
}
}

thanks any help

Ed