Scaling problems! plz help

I have built a website in flash. It’s located at www.pacha06.com Anyway, as you can see it’s way too large. Even at a resolution of 1280x1024 you still get scroller bars. This is abviously not a good thing. I have the following code in an action layer on the main.swf onto which I load other swf’s into levels.


//---------------------<Stage Scale>------------------------\\
Stage.scaleMode = "noBorder";
//Stage.align = "LT";
bg.onResize = function() {
this._width = Stage.width;
this._height = Stage.height;
};
Stage.addListener(bg); // does 'bg' refer to an instance name?

bg._x = bg._y = 0;
bg.onResize();

content.onResize = function() {
this._x = (Stage.width - this._width) / 2;
this._y = (Stage.height - this._height) / 2;
};
Stage.addListener(content);

content.onResize();
//---------------------</Stage Scale>------------------------\\

But as you can see it dosn’t really do much. The current size of my swf’s are 1278x882. Somehow I need to eather scale my files or make them smaller. Someone please tell me how to fix my site plz. I would grately appriciate it. thx in advance.