I would like to open a window from Flash which would have the size I want.

Name of the Flash file is sitenadia.swf integrated as sitenadia in the html file.

Code of the HTML file in which .swf is included for the moment is the following (doesn't work).
What is wrong?

<HTML>
<HEAD>
<TITLE>sitenadia</TITLE>
</HEAD>
<BODY bgcolor="#000000" leftmargin="0" marginwidth="0" marginheight="0" topmargin="0">
< !-- URL's used in the movie-->

<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
ID=sitenadia WIDTH=640 HEIGHT=480 name="sitenadia">
<PARAM NAME=movie VALUE="sitenadia.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#000000>
<EMBED src="sitenadia.swf" quality=high bgcolor=#000000 WIDTH=640 HEIGHT=480 swLiveConnect=true NAME=sitenadia TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ></EMBED>
</OBJECT>
</BODY>
</HTML>