Hmm... Unfortunately.. I don't think that will work. I could be wrong.. but I believe those special FS Commands work only for stand alone players.

In order to get a browser to open a new fullscreen window, you need a little JavaScript code.

<BLOCKQUOTE><font size="1" face="Verdana, Arial">code:</font><HR><pre>
&lt;script language="JavaScript"&gt;&lt;!-- //
function openthewindow() {
window.open("page.html", "newwindow","fullscreen=yes,type=fullWindow,scroll bars=no");
}
//--&gt;&lt;/script&gt;
[/code]

Now you just have to call that function.. There are severl ways to do that..

From the HTML page:

1. &lt;A href="JavaScriptpenthewindow();"&gt;Enter&lt;/A&gt;

2. &lt;BODY onload="openthewindow();"&gt;

From a Flash movie:

3. GetURL("JavaScriptpenthewindow();","")

4. Use the FS Command. This is a good deal more complicated.

---

NOTES:

Calling the JS function from the HTML page (1 and 2) is the most universaly compatible method. Both 3 and 4 have some compatibility problems. Method 3 does not work with IE3. 4 does not work with any Mac IE.

Also note that while this JS code is compatible with both Netscape and IE versions 3 and above, only IE version 4 and above will actually use the ENTIRE screen.

------------------
Scott Richards
http://www.rjscs.com/scotty
[email protected]