Hi all,

I'm a Flash designer who only really knows enough HTML to house my flash sites
and so could do with a little help in solving an html problem.
I 've managed to create an HTML page that scales the flash site housed within
it to fit the whole window. but I don't want the flash file to scale any larger
than 900px wide should the window be opended really large. I would also like it
for the bottom to have a roughly 20px gap between the windows edge and the
flash file as at the moment it touches it.
Are either of these things possible, and can anyone help me adjust my code to
do these things?
Here's the HTML code as is:<html>
<head>
<title>: : B L O N D E : :</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="keywords" content="blonde, events, corporate, design, websites,
packshots">
</head>

<SCRIPT LANGUAGE=JavaScript>
function pop01()
{
window.open("pop1.htm","fromage","width=365,height =277");
}
function pop02()
{
window.open("pop2.htm","fromage","width=365,height =277");
}
function pop03()
{
window.open("pop3.htm","fromage","width=365,height =277");
}
function pop04()
{
window.open("pop4.htm","fromage","width=365,height =277");
}
function pop05()
{
window.open("pop5.htm","fromage","width=365,height =277");
}
function pop06()
{
window.open("pop6.htm","fromage","width=365,height =277");
}
function pop07()
{
window.open("pop7.htm","fromage","width=365,height =277");
}
function pop08()
{
window.open("pop8.htm","fromage","width=365,height =277");
}
function pop09()
{
window.open("pop9.htm","fromage","width=365,height =277");
}
function pop10()
{
window.open("pop10.htm","fromage","width=365,heigh t=277");
}
</SCRIPT>
<script language="javascript" type="text/javascript">
var W = 0;
function openPrintSWF(theSWF)
{
if(theSWF != '')
{
if(W){W.close();}
W =
open("printSWF.cfm?movie="+theSWF,"W","width=400,h eight=550,scrollbars,resizable
,toolbar");
}
}
function popMenu(menu)
{
if(menu != '')
{
if(W){W.close();}
W = open(menu,"W","width=790,height=565,scrollbars");
}
}
function popAd()
{
if(W){W.close();}
W = open('http://adworkshop.com',"W","width=790,height=565,scrollba rs");
}
</script>

<body bgcolor="#EDD000" leftmargin="0" topmargin="0" marginwidth="0"
marginheight="0">
<br>
<center><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=6,0,29,0" width="97%" height="97%">
<param name="movie" value="blonde_base.swf">

<param name="quality" value="high">
<embed src="blonde_base.swf" bgcolor=#EDD000 width="97%" height="97%"
quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash"></embed>
</object>
</center>
</body>
</html>