<script language="JavaScript" type="text/JavaScript">
<!--
function popUp( ){
window.open("popup.html","","height=350,width=400,left=0,top=0");
}
//-->
</script>
1.
Place the code above between the <head>
tags of the html document that the flash movie is in.
( Right after the <title> and <meta> tags is fine.
)
2. Change the height and width in pixels
to reflect the dimensions you want to achieve.
window.open("popup.html","","height=350,width=400,left=0,top=0");
3.
Make sure that the first arguement is the name of the html document
that is going to show in the Pop-up Window, in this case I called it
popup.html
window.open("yourPageName.html","","height=350,width=400,left=0,top=0");