mouseX and mouseY

Say I wanted to make sure that my mouse was within a certain “square area” of the movie… how would I detect that and then execute a function?



if(mouse is within this area)) {
    trace("BOOM!");
} else {
    trace("You are not within the bounds!");
}