My page wont scroll

ive read for two days now… decided to just ask someone.

ive read about TEXT BOXES… and MAKING a text box for a movie clip… looked at tutes on mouse over Scrolling on movie clips… ETC… ANYWAYS>

here is my page. http://riseproductions.com/home if its resized down i cant scroll to the bottom of the page… and its frustrating me… here is my code if someone can help i would be happy with joy. thanks.

Stage.align = “TL”;
Stage.scaleMode = “NoScale”;
stop ();

link1._x = (Stage.width -110);
link1._y = (Stage.height *.01);
link2._x = (Stage.width -110);
link2._y = (Stage.height *.08);
link3._x = (Stage.width -110);
link3._y = (Stage.height *.16);
link4._x = (Stage.width -110);
link4._y = (Stage.height *.24);
link5._x = (Stage.width -110);
link5._y = (Stage.height *.32);
link6._x = (Stage.width -110);
link6._y = (Stage.height *.40);
link7._x = (Stage.width -110);
link7._y = (Stage.height *.48);
link8._x = (Stage.width -110);
link8._y = (Stage.height *.56);
link9._x = (Stage.width -110);
link9._y = (Stage.height *.63);
review._x = (Stage.width -125);
review._y = (Stage.height *.63);
buycd._x = (Stage.width -125);
buycd._y = (Stage.height *.7);
risebeats._x = “1”;
risebeats._y = (Stage.height -62);
header._x = (Stage.width) /2;
header._y = “30”;
info._x = (Stage.width) /2;
info._y = “65”;
center._height = (Stage.height);
center._width = (Stage.width);
center._x = (Stage.width -center._width);
center._y = (Stage.height -center._height);
logo._x = (Stage.width -125);
logo._y = (Stage.height -54);
rightstretch._height = (Stage.height);
rightstretch._x = (Stage.width -125);
leftstretch._height = (Stage.height);
leftstretch._width = (Stage.width *.1);
leftstretch._x = “1”;
links._x = (Stage.width -85)
links._y = (Stage.height -350)
// end initial position setting
//create a listner that checks to see if the browser window is resized

sizeListener = new Object();
sizeListener.onResize = function() {
link1._x = (Stage.width -110);
link1._y = (Stage.height *.01);
link2._x = (Stage.width -110);
link2._y = (Stage.height *.08);
link3._x = (Stage.width -110);
link3._y = (Stage.height *.16);
link4._x = (Stage.width -110);
link4._y = (Stage.height *.24);
link5._x = (Stage.width -110);
link5._y = (Stage.height *.32);
link6._x = (Stage.width -110);
link6._y = (Stage.height *.40);
link7._x = (Stage.width -110);
link7._y = (Stage.height *.48);
link8._x = (Stage.width -110);
link8._y = (Stage.height *.56);
link9._x = (Stage.width -110);
link9._y = (Stage.height *.63);
review._x = (Stage.width -125);
review._y = (Stage.height *.63);
buycd._x = (Stage.width -125);
buycd._y = (Stage.height *.7);
lrates._width = (Stage.width) /2;
lrates._height = (Stage.height) /2;
header._x = (Stage.width) /2;
header._y = “30”;
info._x = (Stage.width) /2;
info._y = “65”;
risebeats._x = “1”;
risebeats._y = (Stage.height -62);
center._height = (Stage.height);
center._width = (Stage.width);
center._x = (Stage.width -center._width);
center._y = (Stage.height -center._height);
logo._x = (Stage.width -125);
logo._y = (Stage.height -54);
rightstretch._height = (Stage.height);
rightstretch._x = (Stage.width -125);
leftstretch._height = (Stage.height);
leftstretch._width = (Stage.width *.1);
leftstretch._x = “1”;
links._x = (Stage.width -85);
links._y = (Stage.height -350);
};
Stage.addListener(sizeListener);