A.S BUTTONS CHANGING MOVIECLIP.. help plz?

Can anyone see anyting wrong with this code ? It´s suppose to change the height of a
box that is containing some text, and I just want it to go from one state to another using simple AS. Is that not possible ?

Kissies and Huggies to the SOLVER =)

btn_small.onRelease = smallRelease;
btn_Big.onRelease = bigRelease;

function smallRelease() {
delete this.onEnterFrame;
this.onEnterFrame = function(){
if(mc_box._yscale > 200){
mc_box._yscale -= 10;
}
}
}

function bigRelease() {
delete this.onEnterFrame;
this.onEnterFrame = function(){
if(mc_box._yscale < 400){
mc_box._yscale += 10;
}
}
}