Cheers fella.

The problem i have is this -

Ive been making a flash site. Ive added a newsletter subscription to the site, and when someone hits submit, it links them to a php page, where it sends the data to a text file, and also opens a picture saying submission succesful. This all works fine, but i want the php page to open in a pop-up window to the right size of the picture. I can get it to open in a pop up no problem, but it wont send the data when i do.

The other thing is i have been using swishmax to build the site and not flash, so i dont know how well the action scripting relates. Anyway, the code i have used thats works (without the pop-up) is -

Code:
on (press)  {
     getURL("http://www.clubfaction.net/site/array.php","_blank",GET");
     _root.visible = true;
}
The script i have been using for the pop-ups is

Code:
on (press) {
    javascript("window.open('http://www.clubfaction.net/site/armageddonflyers.html','armageddon','width=600,height=476, addressbar=no, statusbar=no, resizable=no, scrollbars=no, toolbar=no, top='+((screen.availHeight/2)-(400/2))+',left='+((screen.availWidth/2)-(400/2))+'')");
}
This does work for popups, but it doesnt send the GET commend if i combine it with the other script

i am at a loss with what to do