Aligning

I have got a MC to align to the bottom of me site, and when the site resizes the MC goes with the browser. its really “spiffy” but how do i get it to align in the middle aswell. thanks !

inyer.onResize = function() {
var bounds = this.getBounds(this._parent);
var yoffset = this._y-bounds.yMax;
this._y = Stage.height+yoffset;
};
inyer.onEnterFrame = function() {
var bounds = this.getBounds(this._parent);
var yoffset = this._y-bounds.yMax;
this._y = Stage.height+yoffset;
};
Stage.addListener(Interface);
Stage.align = “TM”;
Stage.scaleMode = “noScale”;

inyer - is my MC

has anyone got any surgestions ?

thanks alot for your time !