Hello Marshy
The gotoNetPage-command can use an optional parameter which will open a new window.
It's something like gotoNetPage URL, frame
The problem with this is that IE5 under WIN2000 (and only this combination) will open the new window extremly slow (sometimes it needs more than a minute).
To get around this problem you can use a javascript like
function open_new_window(adress)
{
window.open(adress,target,other_params);
return;
}
Or something like that (I'am not very good at Javascript)
you can call this script from Director with
gotoNetPage "javascript

pen_new_Window('URL')"
Maybe you have to play a bit with the paranthesesis until it works but this should do it
have fun
dambo