Open new customised browser window

Hi,

I have a flash mx 2004 mc (called main.swf) with 8 buttons on the screen. Each button should popup its own mc in a new and separate window with an exact size, no scrollbars, no toolbars, etc. (button A should open mc A, button B should open mc B, etc.). I found numerous tutorials (mostly from Kirupa) that showed how to produce almost what I wanted, using several methods. But they only work with one button. when I place the second button on the main.swf movie clip, it doesn’t work anymore. Somehow the instructions get mixed up and both button A and B popup a new window but with the same mc.

I tried using fscommands, javascripts, chromeless windows (from several tutorials I found) and nothing seems to work.

I have this javascript but something seems to be out of place because I get a blank browser window:
on (release) {
getURL (“javascript:sopas.swf=window.open(‘http://www.canela.pt/takeaway/sopas.html’,‘Sopas’,'width=400,height=600,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No’); sopas.swf.focus(); void(0);”);
}

Can somebody please point me some clue on how to solve this matter? which would be the best method?

thanks in advance for any help

RF