Mousedown on entire movieclip except one button

I want that wherever you click on the movie you are redirected to some page but when you click on this button, dont redirect
How can I achieve it?

This is what I have so far

button action:
on (release) {
gotoAndStop(110);
}

Movie action

onMouseDown=function(){
getURL(“news.asp”,"_self");
};