Please help

my code:

distancing_mc.onEnterFrame = function() {

xdist = Math.round(_root._xmouse - _x);
ydist = Math.round(_root._ymouse - _y);
distancefromthis = Math.round(Math.sqrt((xdistxdist) + (ydistydist)));
circle_mc._width = (100-distancefromthis)+20;
circle_mc._height = (100-distancefromthis)+20;
}

I have a circle that gets larger/smaller depending upon where the mouse is in comparison to the circle. What code would I use to set limits to the circle. I want the circle to shrink only to a certain size and grow larger to a certain size.