Full Flash website problem

Hello everyone!

I currently working on my first Full-screen flash website.
My problem isnt how to make it 100% flash… that was pretty easy.
The problem is how I should be able to define where the footer is on the layout. Like have I done it now is that I just used: width=“100%” height=“904px” in the object. This have been working good… then we are able to scroll down to the bottom of the website for users that have resolution < 1280x1024. However if a user with 2048x1538 enters the website it will look like this:
http://www.insidemyworld.co.uk/bug.jpg
While in the swf it should just keep going down like this:
http://www.insidemyworld.co.uk/correct.jpg
Tho the users with < 1280x1024 must be able to scroll down to where the city design starts.

This is my current HTML code:

<html xmlns=“http://www.w3.org/1999/xhtml” xml:lang=“en” lang=“en”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<title>emotions</title>
<style type=“text/css”>
<!–
body {

height: 100%;
width: 100%;
margin: 0;

}
--&gt;
&lt;/style&gt;

</head>
<body bgcolor="#171307">
<object classid=“clsid:d27cdb6e-ae6d-11cf-96b8-444553540000” codebase=“http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0” width=“100%” height=“920px” id=“emotions” align=“right”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“movie” value=“emotions.swf” /><param name=“quality” value=“high” /><param name=“scale” value=“noscale” /><param name=“salign” value=“rt” /><param name=“bgcolor” value="#171307" /><embed src=“emotions.swf” quality=“high” scale=“noscale” salign=“rt” bgcolor="#171307" width=“100%” height=“100%” name=“emotions” align=“right” allowScriptAccess=“sameDomain” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object>
</body>
</html>

I have viewed some other html codes at other fullscreen flash website… they look like this:

[COLOR=#000000] <script type=“text/javascript”>
// <![CDATA[
var fo;
if ( screen.width < 1024 ) {
fo = new FlashObject(“interface.swf”, “The Spinned”, “900”, “650”, 8, “#000000”);
} else {
fo = new FlashObject(“interface.swf”, “The Spinned”, “100%”, “100%”, 8, “#000000”);
}
fo.addParam(“menu”, “false”);
fo.write(“flashcontent”);
// ]]>
</script>
<noscript>
<a href=“http://www.macromedia.com/go/getflash/”>Get Flash</a>
</noscript>

…Anyone?

Best regards,
Anders
[/COLOR]