> Or maybe not popups (which means either javascript or URL targets), I would
> simply open the links in separate tabs in Mozilla (this requires clue,
> though).
i saw this a couple days ago on the SLE mailing list...
#!/bin/bash
retval=`ps --no-headers -C mozilla-bin`
if [ "$retval" != "" ]; then
/usr/local/mozilla/mozilla -remote "openURL($1,new-tab)" # <----
else
/usr/local/mozilla/mozilla $1
fi
it's supposed to check if mozilla is already running if so then just
open a new tab. if not then open mozilla. he said he replaced his
mozilla exe with the script above. not sure if this what you
wanted.
bb