Really simple stuff... but help!

ok, im puttin in a geturl on a button, but i want it to open in a seperate window. im working with mx2004, so could you show me how the whole line would look.

ths is what i have so far

on (release) {
 getURL("[http://www.atomicmatches.com/songs/monster.htm](http://www.atomicmatches.com/songs/monster.htm)"), ("_blank");
}

also. could some one define the following targets. i dont know which is which

_parent
_blank
_self
_top

You need to put “_blank” within the parentheses of the URL. So it should be:

(“http://www.atomicmatches.com/songs/monster.htm”, “_blank”);