Hola, tengo una duda sobre el funcionamiento de flash con javascript:
Tengo un flash con un clip al que le doy la siguiente orden:

Código :

on (press) {
getURL("javascript:fullscreen('pantallacompleta.html')");
}


Publico este flash a html y añado un archivo en el mismo nivel que se llama "actionscriptforflash.js".
El code del html con flash con enlace al .js es este:

Código :

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<script type="text/javascript" src="javascriptforflash.js"></script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>fla+javascript</title>
</head>
<body bgcolor="#ffffff">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="1024" height="768" id="fla+javascript" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="fla+javascript.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="fla+javascript.swf" quality="high" bgcolor="#ffffff" width="1024" height="768" name="fla+javascript" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>


Y el del .js es este:

Código :

<!--Funcion para abrir ventana a pantalla completa-->
function fullscreen(){
   window.open('pantallacompleta.html', '', 'fullscreen=yes, scrollbars=auto, status=no, menubar=no);
   }


Luego hago un html que llamo "pantallacompleta.html" y me queda asi:

Código :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<script type="text/javascript" src="javascriptforflash.js"</script>
<head>
<title>pantalla completa</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<h1>pantalla completa</h1>
<body>
</body>
</html>


Aunque es un ejemplo de lo mas simple al abrir el html con flash "flash+javascript.html" no me enlaza a la pagina en pantalla completa que pretendia abrir.
¿Alguien podria ayudarme y decirme que estoy haciendo mal?
Gracias de antemano.