S.O.S. Sending variables to a new window :-(

Situation:

From a button, using a javascript, I open a new window with a htm page with a flash movie whitin. I use the javascript to get centered and 640x480 window:

on (release) {
_level0.getURL(“javascript:launch(’…/newwindow.htm’)”);
}

I must pass a variable to that flash movie, and i tried query string:

on (release) {
_level0.getURL(“javascript:launch(’…/newwindow.htm?variable=test’)”);
}

I have a dinamyc text box in the flash movie to see the value passed
each time the new window is launched.

My problem:

NOT RUNNING !!!

Questions:

Must i have to put something on the .htm code? (the value of the variable
will be different each ejecution).

How can i read this value in the flash movie opened in the new window?

May be the javascript doesn’t support query string?

**Thanks for your help!!! :hugegrin: **